From: <car...@us...> - 2006-03-22 14:43:56
|
Revision: 48 Author: carlosga_fb Date: 2006-03-22 06:43:45 -0800 (Wed, 22 Mar 2006) ViewCVS: http://svn.sourceforge.net/pgsqlclient/?rev=48&view=rev Log Message: ----------- Added definition for _oid data type 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:42:55 UTC (rev 47) +++ trunk/pgsqlclient/source/PostgreSql/Data/Protocol/PgDatabase.cs 2006-03-22 14:43:45 UTC (rev 48) @@ -87,6 +87,7 @@ DataTypes.Add(1020 , "_box" , PgDataType.Array , 603, PgTypeFormat.Binary, 32); DataTypes.Add(1021 , "_float4" , PgDataType.Array , 700, PgTypeFormat.Binary, 4); DataTypes.Add(1027 , "_polygon" , PgDataType.Array , 604, PgTypeFormat.Binary, 16); + DataTypes.Add(1028 , "_oid" , PgDataType.Array , 26, PgTypeFormat.Binary, 4); DataTypes.Add(1033 , "aclitem" , PgDataType.VarChar , 0, PgTypeFormat.Text, 12); DataTypes.Add(1034 , "_aclitem" , PgDataType.Array , 1033, PgTypeFormat.Text, 0); DataTypes.Add(1042 , "bpchar" , PgDataType.VarChar , 0, PgTypeFormat.Text, 0); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |