I am using VB.2005 to access a Pervasive SQL 9.5 database and I'm getting the following error:
ERROR [42S02] [Pervasive][ODBC Client Interface][LNA][Pervasive][ODBC Engine Interface][Data Record Manager]No such table or object.
ERROR [HY000] [Pervasive][ODBC Client...
I have two tables as follows:
CUSTOMERS
customernum
customername
ORDERS
ordernum
customernum
partnum
"SELECT customers.customernum, customername, ordernum FROM customers, orders WHERE partnum=123 and customers.customernum=orders.customernum"
I'm trying to pull a recordset of all customers...
I am attempting to write code that should perform the following:
- insert a new data row into the ORDERS table
- obtain the new IDENTITY field value (the field name is actually "ordernum" but it is an identity field type) from the ORDERS table
- insert data row(s) into the ORDERSDET table with...
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.