megaxoom
May 9th, 2004, 07:29 PM
Hello everyone
To load a Microsoft Access from a specific location, I just use the following example connection string:
string fileLoc = "D:\\database\\myaccess.mdb";
string connStr = @"Jet OLEDB:Global Partial Bulk Ops=2;Jet OLEDB:Registry Path=;Jet OLEDB:Database Locking Mode=1;Data Source=";
connStr += fileLoc + SOME_OTHERINFO
Now my is can this be done the same to Microsoft SQL Server.
If yes, please provide and example. If no, please provide information on how to load the SQL Server.
Thanks for any help.
To load a Microsoft Access from a specific location, I just use the following example connection string:
string fileLoc = "D:\\database\\myaccess.mdb";
string connStr = @"Jet OLEDB:Global Partial Bulk Ops=2;Jet OLEDB:Registry Path=;Jet OLEDB:Database Locking Mode=1;Data Source=";
connStr += fileLoc + SOME_OTHERINFO
Now my is can this be done the same to Microsoft SQL Server.
If yes, please provide and example. If no, please provide information on how to load the SQL Server.
Thanks for any help.