Search found 1 match

by lurcher
Thu Oct 01, 2009 5:31 am
Forum: Databases
Topic: USE statement and odbc_execute vs. odbc_exec
Replies: 1
Views: 648

Re: USE statement and odbc_execute vs. odbc_exec

Hi, The problem occurs because that the driver will perform a TDS prepare operation on the supplied SQL. However as the "use" is only prepared not executed, the current database will not be changed, so the select * from table will fail as the table is not present in the current database (o...