Computer Problems? Computing.Net has over 1,000,000 posts about all things technology related! Over 90% answered within 24 hours! Click here to start participating now! Also, be sure to check out the New User Guide.
Password in connection string on VB
Name: max Date: January 8, 2002 at 10:17:58 Pacific
Comment:
I have a prblem with Access2000 . I need to know how can I use password in connection string (VB)
Name: Tom Date: January 9, 2002 at 01:15:43 Pacific
Reply:
I don't know a lot about VB, but I have programmed in a few other languages. Usually, the password is the next argument. After the connection sting, have a comma, and then the password. It works in every language I know.
0
Response Number 2
Name: Fred Date: January 9, 2002 at 21:41:03 Pacific
Reply:
I havent used Access2k but I know I had a problem connecting to a mySql & Oracle in VB with just passing the value (this,mypassword,that) and not (x=this,password=mypassword,y=that) yet the first arguments worked in C++, beats me...
Summary: try this: dim cn As New ADODB.connection dim rs As New ADODB.Recordset 'To Opent the Connection If cn.state = 0 Then cn.Open "Provider=SQLOLEDB.1;Integrated Security=SSPI;Persist Security Info=False;I...
Summary: Hi there, please can someone help me out, i`m really having a tough time tring to connect to my remote mysql DB, this is the connection string i`m using : Conn3 = "DRIVER={MySQL ODBC 3.51 Driver};SERV...
Summary: Hi there i`m in need of some help with a connection string to an access db on an ftp site that has a usr name and pass word...is this possible??? or does it have to be http? please help. this is what ...