Revision: 49
Author: carlosga_fb
Date: 2006-03-23 05:52:38 -0800 (Thu, 23 Mar 2006)
ViewCVS: http://svn.sourceforge.net/pgsqlclient/?rev=49&view=rev
Log Message:
-----------
?\194?\183 Map Unknown data tyep to PgDataType.Text
Modified Paths:
--------------
trunk/pgsqlclient/source/PostgreSql/Data/Protocol/PgDatabase.cs
Modified: trunk/pgsqlclient/source/PostgreSql/Data/Protocol/PgDatabase.cs
===================================================================
--- trunk/pgsqlclient/source/PostgreSql/Data/Protocol/PgDatabase.cs 2006-03-22 14:43:45 UTC (rev 48)
+++ trunk/pgsqlclient/source/PostgreSql/Data/Protocol/PgDatabase.cs 2006-03-23 13:52:38 UTC (rev 49)
@@ -72,7 +72,7 @@
DataTypes.Add(719 , "_circle" , PgDataType.Array , 718, PgTypeFormat.Binary, 24);
DataTypes.Add(700 , "float4" , PgDataType.Float , 0, PgTypeFormat.Binary, 4);
DataTypes.Add(701 , "float8" , PgDataType.Double , 0, PgTypeFormat.Binary, 8);
- DataTypes.Add(705 , "unknown" , PgDataType.Binary , 0, PgTypeFormat.Binary, 0);
+ DataTypes.Add(705 , "unknown" , PgDataType.Text , 0, PgTypeFormat.Binary, 0);
DataTypes.Add(790 , "money" , PgDataType.Currency , 0, PgTypeFormat.Binary, 4);
DataTypes.Add(829 , "macaddr" , PgDataType.VarChar , 0, PgTypeFormat.Text, 6);
DataTypes.Add(869 , "inet" , PgDataType.VarChar , 0, PgTypeFormat.Text, 0);
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|