|
-
Sep 4th, 2002, 08:59 AM
#1
Thread Starter
Lively Member
connectionString to MS-Access
can anyone show me what's should be my connectionString if my data base is access?
-
Sep 4th, 2002, 09:02 AM
#2
-= B u g S l a y e r =-
something like this
Code:
sConnString = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:\test.mdb"
-
Sep 4th, 2002, 09:17 AM
#3
Thread Starter
Lively Member
Do i have to register my database on ODBC?
-
Sep 4th, 2002, 09:29 AM
#4
Thread Starter
Lively Member
in addition
the database requires password.
so do i just add this:
sConnString = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:\test.mdb;password=xxxx"
??
-
Sep 4th, 2002, 09:41 AM
#5
-= B u g S l a y e r =-
-
Sep 4th, 2002, 09:42 AM
#6
-= B u g S l a y e r =-
Re: in addition
Originally posted by Cerebrate
the database requires password.
so do i just add this:
sConnString = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:\test.mdb;password=xxxx"
??
like this:
Code:
sConnString = Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:\Test.mdb;Jet OLEDB:Database Password=secret
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|