[prev in list] [next in list] [prev in thread] [next in thread] 

List:       mysql-odbc
Subject:    bk commit - MyODBC 3.51
From:       venu () mysql ! com
Date:       2002-10-11 8:29:52
[Download RAW message or body]

Below is the list of changes that have just been commited into a local
MyODBC 3.51 repository of 'venu'. When 'venu' does a push, they will
be propogaged to the main repository and within 24 hours after the push
into the public repository. 

For more information on how to access the public repository see
http://www.mysql.com/products/myodbc/faq.html#Development_source

ChangeSet
  1.223 02/10/11 01:26:42 venu@myvenu.com +1 -0
  info.c:
    Fix to SQLGetTypeInfo

  info.c
    1.40 02/10/11 01:26:26 venu@myvenu.com +16 -16
    Fix to SQLGetTypeInfo

# This is a BitKeeper patch.  What follows are the unified diffs for the
# set of deltas contained in the patch.  The rest of the patch, the part
# that BitKeeper cares about, is below these diffs.
# User:	venu
# Host:	myvenu.com
# Root:	/home/venu/work/odbc/dev-3.51

--- 1.39/info.c	Fri Oct 11 00:58:41 2002
+++ 1.40/info.c	Fri Oct 11 01:26:26 2002
@@ -887,23 +887,23 @@
 {
   /* SQL_BIT= -7 */
   {"bit",sql_bit,"1",NULL,NULL,NULL,sql_nullable,
-   "0",sql_searchable,"0","0","0","char(1)",NULL,NULL,sql_bit,NULL,
+   "0",sql_searchable,"0","0","1","char(1)",NULL,NULL,sql_bit,NULL,
     NULL,NULL},
 
   /* SQL_TINY= -6 */
   {"tinyint",sql_tinyint,"3",NULL,NULL,NULL,sql_nullable,
-   "0",sql_searchable,"0","0","0","tinyint",NULL,NULL,sql_tinyint,
+   "0",sql_searchable,"0","0","1","tinyint",NULL,NULL,sql_tinyint,
     NULL,"10",NULL},
   {"tinyint unsigned",sql_tinyint,"3",NULL,NULL,NULL,sql_nullable,
-   "0",sql_searchable,"1","0","0","tinyint unsigned",NULL,NULL,
+   "0",sql_searchable,"1","0","1","tinyint unsigned",NULL,NULL,
     sql_tinyint,NULL,"10",NULL},
 
   /* SQL_BIGINT= -5 */
   {"bigint",sql_bigint,"19",NULL,NULL,NULL,sql_nullable,
-   "0",sql_searchable,"0","0","0","bigint",NULL,NULL,sql_bigint,
+   "0",sql_searchable,"0","0","1","bigint",NULL,NULL,sql_bigint,
     NULL,"10",NULL},
   {"bigint unsigned",sql_bigint,"20",NULL,NULL,NULL,sql_nullable,
-   "0",sql_searchable,"1","0","0","bigint unsigned",NULL,NULL,sql_bigint,
+   "0",sql_searchable,"1","0","1","bigint unsigned",NULL,NULL,sql_bigint,
     NULL,"10",NULL},
 
   /* SQL_LONGVARBINARY = -3 */
@@ -949,30 +949,30 @@
 
   /* SQL_INTEGER = 4 */
   {"integer",sql_integer,"10",NULL,NULL,NULL,sql_nullable,
-   "0",sql_searchable,"0","0","0","integer",NULL,NULL,sql_integer,
+   "0",sql_searchable,"0","0","1","integer",NULL,NULL,sql_integer,
    NULL,"10",NULL},
   {"integer unsigned",sql_integer,"10",NULL,NULL,NULL,sql_nullable,
-   "0",sql_searchable,"1","0","0","integer unsigned",NULL,NULL,
+   "0",sql_searchable,"1","0","1","integer unsigned",NULL,NULL,
     sql_integer,NULL,"10",NULL},
   {"int",sql_integer,"10",NULL,NULL,NULL,sql_nullable,
-   "0",sql_searchable,"0","0","0","integer",NULL,NULL,sql_integer,
+   "0",sql_searchable,"0","0","1","integer",NULL,NULL,sql_integer,
     NULL,"10",NULL},
   {"int unsigned",sql_integer,"10",NULL,NULL,NULL,sql_nullable,
-   "0",sql_searchable,"1","0","0","integer unsigned",NULL,NULL,
+   "0",sql_searchable,"1","0","1","integer unsigned",NULL,NULL,
     sql_integer,NULL,"10",NULL},
   {"mediumint",sql_integer,"7",NULL,NULL,NULL,sql_nullable,
-   "0",sql_searchable,"0","0","0","Medium integer",NULL,NULL,
+   "0",sql_searchable,"0","0","1","Medium integer",NULL,NULL,
     sql_integer,NULL,"10",NULL},
   {"mediumint unsigned",sql_integer,"8",NULL,NULL,NULL,sql_nullable,
-   "0",sql_searchable,"1","0","0","Medium integer unsigned",NULL,NULL,
+   "0",sql_searchable,"1","0","1","Medium integer unsigned",NULL,NULL,
     sql_integer,NULL,"10",NULL},
 
   /* SQL_SMALLINT = 5 */
   {"smallint",sql_smallint,"5",NULL,NULL,NULL,sql_nullable,
-   "0",sql_searchable,"0","0","0","smallint",NULL,NULL,
+   "0",sql_searchable,"0","0","1","smallint",NULL,NULL,
     sql_smallint,NULL,"10",NULL},
   {"smallint unsigned",sql_smallint,"5",NULL,NULL,NULL,sql_nullable,
-   "0",sql_searchable,"1","0","0","smallint unsigned",NULL,NULL,
+   "0",sql_searchable,"1","0","1","smallint unsigned",NULL,NULL,
     sql_smallint,NULL,"10",NULL},
   {"year",sql_smallint,"4",NULL,NULL,NULL,sql_nullable,
    "0",sql_searchable,"0","0","0","year",NULL,NULL,sql_smallint,
@@ -980,17 +980,17 @@
 
   /* SQL_FLOAT = 6 */
   {"double",sql_float,"15",NULL,NULL,NULL,sql_nullable,
-   "0",sql_searchable,"0","0","0","double","0","4",sql_float,
+   "0",sql_searchable,"0","0","1","double","0","4",sql_float,
    NULL,"2",NULL},
 
   /* SQL_REAL = 7 */
   {"float",sql_real,"7",NULL,NULL,NULL,sql_nullable,
-   "0",sql_unsearchable,"0","0","0","float","0","2",sql_float,
+   "0",sql_unsearchable,"0","0","1","float","0","2",sql_float,
    NULL,"10",NULL},
 
   /* SQL_DOUBLE = 8 */
   {"double",sql_double,"15",NULL,NULL,NULL,sql_nullable,
-   "0",sql_searchable,"0","0","0","double","0","4",sql_double,
+   "0",sql_searchable,"0","0","1","double","0","4",sql_double,
    NULL,"10",NULL},
 
   /* SQL_TYPE_DATE = 91 */

---------------------------------------------------------------------
Please check "http://www.mysql.com/Manual_chapter/manual_toc.html" before
posting. To request this thread, e-mail myodbc-thread6221@lists.mysql.com

To unsubscribe, send a message to the address shown in the
List-Unsubscribe header of this message. If you cannot see it,
e-mail myodbc-unsubscribe@lists.mysql.com instead.

[prev in list] [next in list] [prev in thread] [next in thread] 

Configure | About | News | Add a list | Sponsored by KoreLogic