M
mobutu_fariahe
Guest
First, let me just say that I am a novice when it comes to ASP pages and db connectivity! This may be more of an ASP issue but I thought I'd also post it here...
Here's the problem. We created an export tracking database in Access. We've automated reporting from the db to a web page via an ASP page. The ASP page hits a query, which then gets represented on the returning ASP page as a table. Pretty simple!
The report works great so long as no one is using the Access db. Once someone is in the Access db, when you access the report page, it returns a server error (500) and no page.
Here's the simple code on the ASP page:
<%
' FileName="Connection_ado_conn_string.htm"
' Type="ADO"
' DesigntimeType="ADO"
' HTTP="true"
' Catalog=""
' Schema=""
Dim MM_ExportsTracking_STRING
MM_ExportsTracking_STRING = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=E:\Logistics\Database\ExportManagementSystem.mdb; Persist Security Info=False"
%>
Any idea what could be causing this? I assumed that Access would allow concurrent users to use the db...
I looked briefly at the security settings. Assuming the db was unsecured when not open, would this allow open access when the db was not in use? If so, why would an unsecured db then prevent someone from accessing a query?
Any help is deeply appreciated!
Thanks!
Here's the problem. We created an export tracking database in Access. We've automated reporting from the db to a web page via an ASP page. The ASP page hits a query, which then gets represented on the returning ASP page as a table. Pretty simple!
The report works great so long as no one is using the Access db. Once someone is in the Access db, when you access the report page, it returns a server error (500) and no page.
Here's the simple code on the ASP page:
<%
' FileName="Connection_ado_conn_string.htm"
' Type="ADO"
' DesigntimeType="ADO"
' HTTP="true"
' Catalog=""
' Schema=""
Dim MM_ExportsTracking_STRING
MM_ExportsTracking_STRING = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=E:\Logistics\Database\ExportManagementSystem.mdb; Persist Security Info=False"
%>
Any idea what could be causing this? I assumed that Access would allow concurrent users to use the db...
I looked briefly at the security settings. Assuming the db was unsecured when not open, would this allow open access when the db was not in use? If so, why would an unsecured db then prevent someone from accessing a query?
Any help is deeply appreciated!
Thanks!