Re: [gnome-db] get_mysql_types - doesnt appear to match manual.
- From: Alan Knowles <alan akbkhome com>
- To: Rodrigo Moya <rodrigo gnome-db org>
- Cc: GDA <gnome-db-list gnome org>
- Subject: Re: [gnome-db] get_mysql_types - doesnt appear to match manual.
- Date: Tue, 31 Aug 2004 23:24:38 +0800
yes, please :) But take into account the above mentioned enumeration
type. I guess we should be using that as the set of supported types,
right?
I had a look at it, I couldnt find any of the mysql guys to confirm, but
I think the enum types only relate to the mysql_fetch_fields return
value, not the "SHOW COLUMNS FROM {table}" results.
Attached is based on the list from
http://dev.mysql.com/doc/mysql/en/Storage_requirements.html
Regards
Alan
--- gda-mysql-provider.c.original 2004-08-31 23:10:10.000000000 +0800
+++ gda-mysql-provider.c 2004-08-31 23:20:29.000000000 +0800
@@ -977,21 +977,31 @@
GdaValueType type;
} types[] = {
{ "blob", "", "Binary blob", GDA_VALUE_TYPE_BINARY },
+ { "bigint", "", "Big integer", GDA_VALUE_TYPE_BIGINT },
+ { "char", "", "Char", GDA_VALUE_TYPE_STRING },
{ "date", "", "Date", GDA_VALUE_TYPE_DATE },
{ "datetime", "", "Date and time", GDA_VALUE_TYPE_TIMESTAMP },
{ "decimal", "", "Decimal number", GDA_VALUE_TYPE_DOUBLE },
{ "double", "", "Double precision number", GDA_VALUE_TYPE_DOUBLE },
{ "enum", "", "Enumeration", GDA_VALUE_TYPE_STRING },
{ "float", "", "Single precision number", GDA_VALUE_TYPE_SINGLE },
- { "int24", "", "24 bit integer", GDA_VALUE_TYPE_BIGINT },
+ { "int", "", "Integer", GDA_VALUE_TYPE_INTEGER },
+ { "integer", "", "Integer", GDA_VALUE_TYPE_INTEGER },
{ "long", "", "Long integer", GDA_VALUE_TYPE_INTEGER },
- { "longlong", "", "Extra long integer", GDA_VALUE_TYPE_BIGINT },
+ { "longblob", "", "Long blob", GDA_VALUE_TYPE_BINARY },
+ { "longtext", "", "Long text", GDA_VALUE_TYPE_STRING },
+ { "mediumint", "", "Medium integer", GDA_VALUE_TYPE_INTEGER },
+ { "mediumblob", "", "Medium blob", GDA_VALUE_TYPE_BINARY },
+ { "mediumtext", "", "Medium text", GDA_VALUE_TYPE_STRING },
{ "set", "", "Set", GDA_VALUE_TYPE_STRING },
- { "short", "", "Short integer", GDA_VALUE_TYPE_SMALLINT },
- { "string", "", "String", GDA_VALUE_TYPE_STRING },
+ { "smallint", "", "Small integer", GDA_VALUE_TYPE_INTEGER },
+ { "text", "", "Text", GDA_VALUE_TYPE_STRING },
+ { "tinyint", "", "Tiny integer", GDA_VALUE_TYPE_INTEGER }, /* really a boolean */
+ { "tinyblob", "", "Tiny blob", GDA_VALUE_TYPE_BINARY },
+ { "tinytext", "", "Tiny text", GDA_VALUE_TYPE_STRING },
{ "time", "", "Time", GDA_VALUE_TYPE_TIME },
{ "timestamp", "", "Time stamp", GDA_VALUE_TYPE_TIMESTAMP },
- { "tiny", "", "Tiny integer", GDA_VALUE_TYPE_SMALLINT },
+ { "varchar", "", "Variable Length Char", GDA_VALUE_TYPE_STRING },
{ "year", "", "Year", GDA_VALUE_TYPE_INTEGER }
};
[
Date Prev][Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]