ODBC GetData: Add support for a few fCType codes

This commit is contained in:
Nirgal Vourgère
2013-07-08 17:06:06 +02:00
parent 06ea2517e9
commit 3bdff87b9a
2 changed files with 99 additions and 18 deletions

View File

@@ -58,9 +58,9 @@ struct _hstmt {
struct _sql_bind_info {
int column_number;
int column_bindtype;
int column_bindlen;
int *column_lenbind;
int column_bindtype; /* type/conversion required */
int column_bindlen; /* size of varaddr buffer */
int *column_lenbind; /* where to store length of varaddr used */
char *varaddr;
struct _sql_bind_info *next;
};