Share a db

  • Thread starter Thread starter Gianni
  • Start date Start date
G

Gianni

Hi,

How can I set an access DB to let to an application and an aspx page to
access a db toghether?

Thanks

Gianni
 
If you have the correct conection string you can use it from any application or aspx page

What problems are you having?
 
I've got this conection string:
ConnectionStringLOG = "Jet OLEDB:Global Partial Bulk Ops=2;Jet
OLEDB:Registry Path=;Jet OLEDB:Database L" & _
"ocking Mode=1;Data Source=""" & DBdir & "Log.mdb"";Mode=Share " & _
"Deny None;Jet OLEDB:Engine Type=5;Provider=""Microsoft.Jet.OLEDB.4.0"";Jet
OLEDB:S" & _
"ystem database=;Jet OLEDB:SFP=False;persist security info=False;Extended
Propert" & _
"ies=;Jet OLEDB:Compact Without Replica Repair=False;Jet OLEDB:Encrypt
Database=F" & _
"alse;Jet OLEDB:Create System Database=False;Jet OLEDB:Don't Copy Locale on
Compa" & _
"ct=False;User ID=Admin;Jet OLEDB:Global Bulk Transactions=1"
In general all is ok, but sometimes when I refresh the page, if the
application is writing into db the page display an error in the opendb
function.
 
Back
Top