ADO Connection String.
|
Newbie Member
|
|
| 21Aug2009,09:25 | #1 |
|
I am currently having problems with my ADO connection string. I have searched all over the internet for a solution to this problem but I have yet to find a solution. Can someone help me with the proper configuration for a SQL OLEDB connection with a windows authentication? I have attached my C++ code file and a printscreen of my SQL Server Express signon screen.
|
|
Go4Expert Founder
|
![]() |
| 21Aug2009,09:59 | #2 |
|
Instead of attaching your problem try posting them as that becomes easier for us to look at
|
|
Newbie Member
|
|
| 21Aug2009,10:08 | #3 |
|
The following is an error message I am receiving:
Error number: 80040e4d Login failed for user 'mcertini'. Error Code = 80040e4d Code meaning = I Source = Microsoft OLE DB Provider for SQL Server |
|
Banned
|
|
| 21Aug2009,10:56 | #4 |
|
Try using below sample code :
Quote:
|
|
Newbie Member
|
|
| 21Aug2009,11:34 | #5 |
|
naimish,
Thank you for your reply. Listed below is the message I get when I eliminate all of the arguments other than the "Provider" and "Data Source" and modify these to your recommendation. Error number: 80004005 Unrecognized database format 'C:\SQL Server 2000 Sample Databases\NORTHWND.MDF'. Error Code = 80004005 Code meaning = U Source = Microsoft JET Database Engine Listed below is the message I get when I retain all of the original arguments and modify the arguments you specified: Error number: 80040e21 Multiple-step OLE DB operation generated errors. Check e ach OLE DB status value, if available. No work was done. Error Code = 80040e21 Code meaning = I Source = Microsoft OLE DB Service Components |
|
Mentor
|
![]() |
| 21Aug2009,12:06 | #6 |
|
Try not using quotes, i.e.
Code:
pConnection1->ConnectionString = "Provider=SQLOLEDB.1;Persist Security Info=True;...(etc)"; |
|
Banned
|
|
| 21Aug2009,12:17 | #7 |
|
Quote:
The solution I was using it, try to convert your database in 97 format, it ll get closed.
|
|
Invasive contributor
|
![]() |
| 23Aug2009,02:50 | #8 |
|
The Connection String Reference: http://www.connectionstrings.com/
|



