[ psqlodbc-Bugs-1010377 ] GUID code missing in convert.c (" Unrecognized C_parameter .." ) and fix

From: <noreply(at)pgfoundry(dot)org>
To: noreply(at)pgfoundry(dot)org
Subject: [ psqlodbc-Bugs-1010377 ] GUID code missing in convert.c (&quot; Unrecognized C_parameter ..&quot; ) and fix
Date: 2008-04-15 15:51:57
Message-ID: 20080415155157.5368017AE681@pgfoundry.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-odbc

Bugs item #1010377, was opened at 2008-04-15 17:49
You can respond by visiting:
http://pgfoundry.org/tracker/?func=detail&atid=538&aid=1010377&group_id=1000125

Category: None
Group: None
>Status: Deleted
Resolution: None
Priority: 3
Submitted By: Jan-Willem Goossens (jgoossens)
Assigned to: Nobody (None)
>Summary: GUID code missing in convert.c (&quot;Unrecognized C_parameter ..&quot;) and fix

Initial Comment:
Hi,
Either I'm missing something, or there's the GUID (UUID) implementation missing in ResolveOneParam(..) in convert.c [08.03.0100], since I'm getting "Unrecognized C_parameter type in copy_statement_with_parameters" exceptions with param_ctype == -11 (=SQL_C_GUID).

I admit I dont really know what I'm doing, but adding the following lines seems to work well:

[convert.c, line 3745]
#if (ODBCVER >= 0x0350)
case SQL_C_GUID:
{
SQLGUID *g = (SQLGUID *) buffer;
sprintf (param_string,
"%08lX-%04X-%04X-%02X%02X-%02X%02X%02X%02X%02X%02X",
(unsigned long) g->Data1,
g->Data2, g->Data3,
g->Data4[0], g->Data4[1], g->Data4[2], g->Data4[3],
g->Data4[4], g->Data4[5], g->Data4[6], g->Data4[7]);
}
break;
#endif

[heavily inspired by http://www.opensource.apple.com/darwinsource/Current/iodbc-34/iodbc/iodbc/trace/GetData.c]

I hope this is useful..
Jan-Willem

----------------------------------------------------------------------

You can respond by visiting:
http://pgfoundry.org/tracker/?func=detail&atid=538&aid=1010377&group_id=1000125

Browse pgsql-odbc by date

  From Date Subject
Next Message Jack Wilson 2008-04-15 18:12:04 How to determine if Use Declare/Fetch is in use by looking at CX= values in connection string
Previous Message noreply 2008-04-15 15:49:36 [ psqlodbc-Bugs-1010377 ] GUID code missing in convert.c ("Unrecognized C_parameter ..") and fix