MS Access databases
connectionString="Provider=Microsoft.Jet.OLEDB.4.0; Password=psw; Data Source=D:\Temp\DB.mdb; Mode=ReadWrite;Persist Security Info=True"
MS Access databases via ODBC driver (DSNless connection):
connectionString="DRIVER={Microsoft Access Driver (*.mdb)}; DBQ=D:\Temp\DB.mdb"
MS SQL Server:
connectionString="Provider=SQLOLEDB.1; Integrated Security=SSPI;Persist Security Info=False;Initial Catalog=DemoDB;Data Source=SqlServerName"
Oracle databases:
connectionString="Provider=MSDAORA.1; Password=psw; User ID=admin; Data Source=srv; Persist Security Info=True"
Remote database connection:
connectionString="Provider=MS Remote; Data Source=YourDataSourceName; Remote Server=http://YourWebServer; Internet Timeout=300000"
|