Re: Problem about Bytea and SQL_C_CHAR

From: Hiroshi Inoue <Inoue(at)tpf(dot)co(dot)jp>
To: Han <zhouhanok(at)vip(dot)sina(dot)com>
Cc: "pgsql-odbc(at)postgresql(dot)org" <pgsql-odbc(at)postgresql(dot)org>
Subject: Re: Problem about Bytea and SQL_C_CHAR
Date: 2002-11-28 06:36:17
Message-ID: 3DE5B961.11152905@tpf.co.jp
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-odbc

Han wrote:
>
> Hiroshi Inoue,
>
> Hi! I checked the crashing code and abstracted this:
>
> int data=1;
> int cb;
> rc = SQLPrepare(hstmt, "insert into test1(a) values(?)", SQL_NTS);
> rc = SQLBindParameter(hstmt, 1,
> SQL_PARAM_INPUT,
> SQL_C_TCHAR, SQL_INTEGER,
> 4, 0,
> &data, MAX_STRING_SIZE,
> &cb);
> rc = SQLExecute(hstmt);
> rc = SQLFreeStmt(hstmt, SQL_RESET_PARAMS);
> rc = SQLExecDirect(hstmt, "select * from test1", SQL_NTS);
>
> Table test1 has just one int column a.
> The SQLExecDirect crashed! Replace it with SQLBindParameter after that SQLFreeStmt will lead to crash! Please try it.

Maybe I found a cause. Please try the snapshot dll again.
Thanks a lot.

Hiroshi Inoue
http://w2422.nsk.ne.jp/~inoue/

In response to

Browse pgsql-odbc by date

  From Date Subject
Next Message Han 2002-11-28 08:11:50 Re: Problem about Bytea and SQL_C_CHAR
Previous Message Han 2002-11-28 05:04:08 Re: Problem about Bytea and SQL_C_CHAR