Arun,
You are back to the same issue. This has nothing to do with MyODBC. The
parameters you are passing are not the correct data types. If no username
is passed, the user 'ODBC' is supplied. If no host is passed 'localhost' is
supplied. The parameter you are passing for the password is being rea
I think MyODBC in this situation is irelevant. ODBC reinterpret the SQL
language (and is good for some universal data components like ADO,DAO,...),
but MySQL C API is native. Also you can't connect by MyODBC using MYSQL C
API.
So you really didn't forget some parameter??, it seems like.
Otherwise t
I have installed MyODBC 3.51 and created the DSN for my Database.
I want to clarify that;
If the User name I have given is could not be resolved by mysal_real_connect,
then it automatically establish the connection to the server using
[EMAIL PROTECTED] - right
If so, Is there need to have the us
this occures when you ommit the user name, MYSQL C API uses user ODBC as
default when you ommit or enter empty string as
user name when calling mysql_real_connect()
- Original Message -
From: "Arunachalam" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Thursday, February 05, 2004 3:38 P
Arunachalam wrote:
Hi all,
Is any one met with the error while connecting to MySQL Server
*Access denied for user: '[EMAIL PROTECTED]' (Using password: YES)*
OK, you tried to log into mysql as [EMAIL PROTECTED], using a password.
if so pleass let me know the remedy to resolve this error.
I don
You have attempted to login with out supplying a username. Try logging in
like:
mysql -u -p
>> Original Message <<
On 2/5/04, 8:38:13 AM, Arunachalam <[EMAIL PROTECTED]> wrote regarding
Access denied for user: '[EMAIL PROTECTED]' (Using password: YES):
> Hi all