diff options
author | Hiroshi Inoue | 2007-10-27 01:14:00 +0000 |
---|---|---|
committer | Hiroshi Inoue | 2007-10-27 01:14:00 +0000 |
commit | fc4df26bb85ab91e6d3a47dbd002f96290ac258c (patch) | |
tree | 139157356e99ad6fb305e6c71caf07a04a6f6ff6 /statement.c | |
parent | be8dd244ed3fab63dd34a22ef58cc02fa417df0f (diff) |
The version is now 8.2.0501.
1. Correct the COLUMN_LENGTH return value of SQLColumns() for varchar/bpchar
type columns (Unicode driver).
2. Change to not return database name if case of MS Query.
3. The first cut to use Windows SSPI. The trial to use Schannel service
for SSL support.
4. Be more careful about <for locking clause> in UseDeclareFetch mode.
Add missing? "for read only" clause for read only queries for 8.3
or later servers for safety.
Diffstat (limited to 'statement.c')
-rw-r--r-- | statement.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/statement.c b/statement.c index 172a7b4..a806d76 100644 --- a/statement.c +++ b/statement.c @@ -1818,6 +1818,10 @@ inolog("get_Result=%p\n", res); sprintf(fetch, "%s " FORMAT_LEN " in \"%s\"", fetch_cmd, qi.row_size, SC_cursor_name(self)); qryi = &qi; appendq = fetch; +#ifdef NOT_USED + if (0 != (ci->extra_opts & BIT_IGNORE_ROUND_TRIP_TIME)) + qflag |= IGNORE_ROUND_TRIP; +#endif /* NOT_USED */ } res = CC_send_query_append(conn, self->stmt_with_params, qryi, qflag, SC_get_ancestor(self), appendq); if (SC_is_fetchcursor(self) && QR_command_maybe_successful(res)) |