BUG: Invalid Connection String Error with Certain PasswordsLast reviewed: September 9, 1996Article ID: Q124318 |
The information in this article applies to:
BUG# QJET: 1588 (2.00.2317)
SYMPTOMSWhen attempting to connect to a Microsoft Access data source, SQLConnect may return an error for those account whose password contains a semicolon (;). The error message returned is:
SQLSTATE="01S00", szErrorMsg="[Microsoft][ODBC Microsoft Access 2.0 Driver]Invalid connection string attribute <xxxx>"For example, assume a user account has a login id of John and a password of ;John in the Microsoft Access database and the data source name is mysource. Then
SQLConnect(hdbc,"mysource",8,"John",4,";John",,5)returns
SQLSTATE="01S00", szErrorMsg="[Microsoft][ODBC Microsoft Access 2.0 Driver]Invalid connection string attribute John" CAUSEThe problem happens because a semicolon is a separator in the connection string and having it in the password causes a conflict.
WORKAROUNDTo work around this problem, you can use the SQLDriverConnect call and either do not pass a password or pass an incorrect password. As a result, you are prompted for the password. When prompted, you can enter the password with the semicolon, and the connection will succeed.
STATUSMicrosoft has confirmed this to be a problem in ODBC Access Driver version 2.00.2317. We are researching this problem and will post new information here in the Microsoft Knowledge Base as it becomes available.
|
Additional reference words: 2.00.2317 ODBC Access MFC Visual C++ MSVC
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |