I need to access from a Pervasive 2000i server via ODBC. The ODBC is working fine but the data names in the table are causing problems. The datanames were named as _name, _address, _faxnum, ....
I realize this is not the best naming convention, and it was a different company that did this.
Anyway, If I do this it works:
Select * From custinfo
But if I do any of these it fails:
Select * From custinfo WHERE _name LIKE'%test%'
Select [_name] From custinfo
Select _name From custinfo
If I do this on the server from within the Pervasive SQL Manager, it works... BUT through ODBC it fails.
Select [_name] From custinfo
Any Ideas?
I realize this is not the best naming convention, and it was a different company that did this.
Anyway, If I do this it works:
Select * From custinfo
But if I do any of these it fails:
Select * From custinfo WHERE _name LIKE'%test%'
Select [_name] From custinfo
Select _name From custinfo
If I do this on the server from within the Pervasive SQL Manager, it works... BUT through ODBC it fails.
Select [_name] From custinfo
Any Ideas?