Sorry, I meant to say i got the following error:
Microsoft OLE DB Provider for ODBC Drivers error '80040e14'
[Microsoft][ODBC Microsoft Access Driver] Invalid SQL statement; expected 'DELETE', 'INSERT', 'PROCEDURE', 'SELECT', or 'UPDATE'.
Thanks if you can help me!
This is the ASP version that works:
<%
Dim Conn, RS
Set Conn = Server.CreateObject("ADODB.Connection")
conn.open "pp2"
Dim strSQL
strSQL = "DELETE * FROM Invoices;"
Set RS = Conn.Execute(strSQL)
strSQL = "INSERT INTO Invoices SELECT [XLink].* "
strSQL =...
Can I trigger an Access Query with ASP? Instead of writing out the query in ASP, could asp run a query which is in Access already?
Could someone help with some code showing how...
Any help will be much appreciated...
Thanks
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.