summaryrefslogtreecommitdiff
path: root/odbcapiw.c
diff options
context:
space:
mode:
authorHiroshi Inoue2003-10-25 04:19:23 +0000
committerHiroshi Inoue2003-10-25 04:19:23 +0000
commit1016a91388873e2d0ba100f05ebf01eb4b5379f3 (patch)
tree628ec20f65707eeafeed9e3ef30734b6254cccba /odbcapiw.c
parent5f6236bbb805066ff07b4969332d319194824d18 (diff)
[7.03.0201]
1) Revise the handling of descriptors and implement SQLCopyDesc. 2) Handle data_at_execution columns for SQLSetPos or SQLBulkOperations.
Diffstat (limited to 'odbcapiw.c')
-rw-r--r--odbcapiw.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/odbcapiw.c b/odbcapiw.c
index ba2123d..49859f8 100644
--- a/odbcapiw.c
+++ b/odbcapiw.c
@@ -216,7 +216,7 @@ RETCODE SQL_API SQLExecDirectW(HSTMT StatementHandle,
mylog("[SQLExecDirectW]");
stxt = ucs2_to_utf8(StatementText, TextLength, &slen, FALSE);
ENTER_STMT_CS((StatementClass *) StatementHandle);
- ret = PGAPI_ExecDirect(StatementHandle, stxt, slen);
+ ret = PGAPI_ExecDirect(StatementHandle, stxt, slen, 0);
LEAVE_STMT_CS((StatementClass *) StatementHandle);
if (stxt)
free(stxt);