Statalisters,
Could someone using odbc drivers tell me if this is the normal behavior (Stata15/Linux64):
Why wouldn't "VALUES" be an enumerated list of values instead of "?"; or per say, what am I doing wrong?
Note: odbc load/exec works fine.
This is a snippet of my odbc logs:
Clearly "INSERT INTO t (dt, a, m) VALUES (?, ?, ?)" isn't a valid sql statement, afaik.
Could someone using odbc drivers tell me if this is the normal behavior (Stata15/Linux64):
Code:
. odbc insert, table("t") dsn("mydsn") sqlshow INSERT INTO t (dt, a, m) VALUES (?, ?, ?) [...]
Note: odbc load/exec works fine.
This is a snippet of my odbc logs:
Code:
[...] Entry: Statement = 0x6b44730 SQL = [INSERT INTO t (dt, a, m) VALUES (?, ?, ?)][length = 41 (SQL_NTS)] [...]
Comment