[pgsqlclient-checkins] pgsqlclient_10/PostgreSql.Data.PgSqlClient/source/NPgClient PgDbClient.cs,1.2
Status: Inactive
Brought to you by:
carlosga_fb
From: <car...@us...> - 2003-10-17 15:14:15
|
Update of /cvsroot/pgsqlclient/pgsqlclient_10/PostgreSql.Data.PgSqlClient/source/NPgClient In directory sc8-pr-cvs1:/tmp/cvs-serv25578 Modified Files: PgDbClient.cs Log Message: Added definitions for Geometry types ( non finished yet ) Index: PgDbClient.cs =================================================================== RCS file: /cvsroot/pgsqlclient/pgsqlclient_10/PostgreSql.Data.PgSqlClient/source/NPgClient/PgDbClient.cs,v retrieving revision 1.20 retrieving revision 1.21 diff -C2 -d -r1.20 -r1.21 *** PgDbClient.cs 16 Oct 2003 10:06:38 -0000 1.20 --- PgDbClient.cs 17 Oct 2003 15:14:05 -0000 1.21 *************** *** 662,665 **** --- 662,674 ---- types.Add(26 , "oid" , DbType.Int32 , Type.GetType("System.Int32") , 0, 1, 4, false); types.Add(30 , "oidvector", DbType.Binary , Type.GetType("System.Array") , 26, 1, 4, true); + + types.Add(600 , "point" , DbType.Binary , Type.GetType("System.Array") , 701, 1, 16, false); + types.Add(601 , "lseg" , DbType.Binary , Type.GetType("System.Array") , 600, 1, 32, false); + types.Add(602 , "path" , DbType.String , Type.GetType("System.String") , 0, 0, -1, false); + types.Add(603 , "box" , DbType.Binary , Type.GetType("System.Array") , 600, 1, 32, false); + types.Add(604 , "polygon" , DbType.String , Type.GetType("System.String") , 0, 0, -1, false); + types.Add(628 , "line" , DbType.Binary , Type.GetType("System.Array") , 701, 1, 32, false); + types.Add(718 , "circle" , DbType.String , Type.GetType("System.String") , 0, 1, 24, false); + types.Add(700 , "float4" , DbType.Single , Type.GetType("System.Single") , 0, 1, 4, false); types.Add(701 , "float8" , DbType.Double , Type.GetType("System.Double") , 0, 1, 8, false); |