If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

 
Go Back  dBforums > Data Access, Manipulation & Batch Languages > ASP > ASP Error

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 01-23-03, 17:53
luisantonio luisantonio is offline
Registered User
 
Join Date: Sep 2002
Location: San Juan, Puerto Rico
Posts: 29
ASP Error

This is the error I am getting.

Error Type:
Microsoft OLE DB Provider for ODBC Drivers (0x80004005)
[Microsoft][ODBC Microsoft Access Driver] Could not use '(unknown)'; file already in use.
/comprobante/test.asp, line 5
Reply With Quote
  #2 (permalink)  
Old 01-23-03, 18:48
Memnoch1207 Memnoch1207 is offline
Registered User
 
Join Date: Jan 2003
Location: Midwest
Posts: 138
what does your code say on line 5?
Reply With Quote
  #3 (permalink)  
Old 01-23-03, 19:36
luisantonio luisantonio is offline
Registered User
 
Join Date: Sep 2002
Location: San Juan, Puerto Rico
Posts: 29
code

This is the code Dreamweaver generate.

<!--#include file="Connections/test.asp" -->
<%
var Recordset1 = Server.CreateObject("ADODB.Recordset");
Recordset1.ActiveConnection = MM_test_STRING;
Recordset1.Source = "SELECT * FROM suplidores";
Recordset1.CursorType = 0;
Recordset1.CursorLocation = 2;
Recordset1.LockType = 1;
Recordset1.Open();
var Recordset1_numRows = 0;
%>
<%
var Repeat1__numRows = 10;
var Repeat1__index = 0;
Recordset1_numRows += Repeat1__numRows;
%>
Reply With Quote
  #4 (permalink)  
Old 01-24-03, 10:37
pjames pjames is offline
Registered User
 
Join Date: Jan 2003
Posts: 23
The issue is in test.asp your connection string appears to be wrong. please post the contents of connections/test.asp
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On