[pgsqlclient-checkins] pgsqlclient_10/PostgreSql.Data.PgSqlClient/source PgDbType.cs,1.4,1.5 PgParam
Status: Inactive
Brought to you by:
carlosga_fb
From: <car...@us...> - 2003-10-26 11:35:55
|
Update of /cvsroot/pgsqlclient/pgsqlclient_10/PostgreSql.Data.PgSqlClient/source In directory sc8-pr-cvs1:/tmp/cvs-serv4661 Modified Files: PgDbType.cs PgParameter.cs Log Message: 2003-10-26 Carlos Guzmán Álvarez <car...@te...> * source/NPgClient/PgDbClient.cs: * source/NPgClient/PgOutputPacket.cs: * source/NPgClient/PgResponsePacket.cs: * source/NPgClient/PgDataType.cs: * source/PgDbType.cs: * source/PgParameter.cs: * source/PgType.cs: - Started to work on support for timetz, timestamptz and interval types [not finished yet]. Index: PgDbType.cs =================================================================== RCS file: /cvsroot/pgsqlclient/pgsqlclient_10/PostgreSql.Data.PgSqlClient/source/PgDbType.cs,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** PgDbType.cs 17 Oct 2003 18:21:14 -0000 1.4 --- PgDbType.cs 26 Oct 2003 11:31:59 -0000 1.5 *************** *** 28,32 **** Boolean , Box , ! Byte , Char , Circle , --- 28,32 ---- Boolean , Box , ! Byte , Char , Circle , *************** *** 37,51 **** Float , Int2 , ! Int4 , Int8 , Line , LSeg , ! Numeric , Path , Point , ! Polygon , Text , Time , ! TimeStamp , VarChar , Vector --- 37,54 ---- Float , Int2 , ! Int4 , Int8 , + Interval , Line , LSeg , ! Numeric , Path , Point , ! Polygon , Text , Time , ! TimeWithTZ , ! Timestamp , ! TimestampWithTZ , VarChar , Vector Index: PgParameter.cs =================================================================== RCS file: /cvsroot/pgsqlclient/pgsqlclient_10/PostgreSql.Data.PgSqlClient/source/PgParameter.cs,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** PgParameter.cs 29 Sep 2003 19:41:39 -0000 1.7 --- PgParameter.cs 26 Oct 2003 11:32:00 -0000 1.8 *************** *** 291,295 **** case TypeCode.DateTime: ! PgDbType = PgDbType.TimeStamp; break; --- 291,295 ---- case TypeCode.DateTime: ! PgDbType = PgDbType.Timestamp; break; *************** *** 340,344 **** return DbType.Time; ! case PgDbType.TimeStamp: return DbType.DateTime; --- 340,344 ---- return DbType.Time; ! case PgDbType.Timestamp: return DbType.DateTime; *************** *** 387,391 **** case DbType.DateTime: ! return PgDbType.TimeStamp; case DbType.Int16: --- 387,391 ---- case DbType.DateTime: ! return PgDbType.Timestamp; case DbType.Int16: |