Hi guys,
I have a Foxpro 8.0 DB defined as System DSN
my conn string in ASP is :
Conn_Str = "dsn=MASTERDB;uid=;pwd="
set cn=server.createobject("adodb.connection")
cn.open Conn_Str
When I execute command :
set rs=cn.execute("select * from Products")
following error occurs :
Microsoft OLE DB Provider for ODBC Drivers (0x80040E37)
[Microsoft][ODBC Visual FoxPro Driver]Not a table.
Problem is "I have an autoincremet field in Products table ".
I can execute SQL for tables without autoincrement fields.
How can I fix it?