Re: Regarding PostgreSQL BIT datatype binding in ODBC.......

From: ranjeeth kumar <ranjeeth_cool(at)yahoo(dot)co(dot)in>
To: "pgsql-odbc(at)postgresql(dot)org" <pgsql-odbc(at)postgresql(dot)org>
Subject: Re: Regarding PostgreSQL BIT datatype binding in ODBC.......
Date: 2012-09-10 04:32:04
Message-ID: 1347251524.26745.YahooMailNeo@web190003.mail.sg3.yahoo.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-odbc

Hello All,

I have a table with a bit(10) type colmn. I can insert "1010110110" into that column from PSQL.
i.e.,
postgres=# insert into public.ranc2b values(1,'1101010101');
INSERT 0 1

I want to insert the same character data "1010110110" into the same bit(10) typed column from an ODBC application program,
Can somebody please suggest me how should I bind the data in the SQLBindParameter call.

I tried to bind the data as SQL_BINARY and SQL_CHAR but I got Incorrect binary data format error.

Quick help is appreciated.

Thanks in Advance.

Regards,
Ranjeeth.

________________________________
From: ranjeeth kumar <ranjeeth_cool(at)yahoo(dot)co(dot)in>
To: "pgsql-odbc(at)postgresql(dot)org" <pgsql-odbc(at)postgresql(dot)org>
Sent: Thursday, 2 August 2012 12:55 PM
Subject: Regarding PostgreSQL BIT datatype binding in ODBC.......

Hello All,

I am new to this mailing list and this is my first post :)

I want to pass numeric data (2345) into a PostgreSQL BIT datatype column bit(1) using dynamic sql thru ODBC. I very much understand the risk of data getting truncated...
On PSQL, I simply can do -- insert into tab values(CAST(2345 AS BIT(1))) to acheive what i want (and I understand only 1 would get inserted). But I want to do this through ODBC and dynamic sql.

I will have to prepare my query as 

insert into tab values(CAST(? AS bit(1));

then bind 2345 and then execute the statement. 

Can someone help me on how the binding should happen... 
I mean wat should be the "ValueType" and the "ParameterType" etc. in the call to the SQLBindParameter function....

SQLRETURN SQLBindParameter(
      SQLHSTMT        StatementHandle,
      SQLUSMALLINT    ParameterNumber,
      SQLSMALLINT     InputOutputType,
      SQLSMALLINT     ValueType,
      SQLSMALLINT     ParameterType,
      SQLULEN         ColumnSize,
      SQLSMALLINT     DecimalDigits,
      SQLPOINTER      ParameterValuePtr,
      SQLLEN          BufferLength,
      SQLLEN *        StrLen_or_IndPtr);

Quick help is appreciated and additional inputs/coments are also most welcome...

Thanks and Regards,
Ranjeeth. 

In response to

Responses

Browse pgsql-odbc by date

  From Date Subject
Next Message Marco Gaiarin 2012-09-10 08:46:17 Re: psqlODBC 09.01.0200 Released
Previous Message Boszormenyi Zoltan 2012-09-09 07:55:11 Re: Error reporting goes into an infinite loop when compiled --with-odbcver=0x0250