Re: mysql_init(&m) changes values of variables

2005-11-13 Thread Bruce Martin
Ok I have an update. I fixed my problem by passing a NULL parameter to mysql_init() to do this I did this: MYSQL *m; m=mysql_init(NULL); connection=mysql_real_connect(m,cStrdbServer,cStrdbUser,cStrdbUserPass,c StrdbName,0,NULL,0); On Nov 12, 2005, at 7:44 PM, Bruce Martin wrote: Hello all,

Re: log-warnings

2005-11-13 Thread Marcus Bointon
On 12 Nov 2005, at 04:26, Harrison Fisk wrote: The log-warnings option doesn't do what you want. It will cause the mysqld server log more internal errors. Non-critical errors such as network disconnects will be logged into the error log with that setting. The option you want it is the -

Re: Unable to access mysql database with root user after upgrade?

2005-11-13 Thread Murray @ PlanetThoughtful
Murray @ PlanetThoughtful wrote: [EMAIL PROTECTED] wrote: Hi Shawn, Sorry, I'm talking about "root" the MySQL user account. The account exists -- I can perform the following, for example: c:>mysql --user=root ptnew -p Once I supply the password, this will put me in to the ptnew database,