Hi.
What is the correct connection string, for Msaccess Databases in Ado.Net?
The Databases have Password, and locate in my PC.
Thanks for all
Imports System.Data.OleDb
...
Dim oOleDbConnection As OleDbConnection
Dim sConnString As String = _
"Provider=Microsoft.Jet.OLEDB.4.0;" & _
"Data Source=C:\myPath\myJet.mdb;" & _
"User ID=Admin;" & _
"Password="
oOleDbConnection = New OleDb.OleDbConnection(sConnString)
oOleDbConnection.Open()
Take a look at Carl Prothman's site; "World's largest collection of ADO and
ADO.NET connection strings on the internet!":
http://www.carlprothman.net/Default.aspx?tabid=81
HTH,
-B
> Hi.
>
[quoted text clipped - 3 lines]
>
> Thanks for all
dtto086 - 14 Apr 2005 15:08 GMT
Thanks for all
andres
> Imports System.Data.OleDb
> ...
[quoted text clipped - 21 lines]
>>
>> Thanks for all