Update of /cvsroot/pgsqlclient/pgsqlclient_10/source/PostgreSql/Data/PostgreSqlClient
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4011
Added Files:
PgRowUpdatedEventHandler.cs PgRowUpdatingEventHandler.cs
Log Message:
Started the rework of the Schema support
--- NEW FILE: PgRowUpdatedEventHandler.cs ---
/*
* PgSqlClient - ADO.NET Data Provider for PostgreSQL 7.4+
*
* The contents of this file are subject to the Initial
* Developer's Public License Version 1.0 (the "License");
* you may not use this file except in compliance with the
* License.
*
* Software distributed under the License is distributed on
* an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either
* express or implied. See the License for the specific
* language governing rights and limitations under the License.
*
* Copyright (c) 2003, 2005 Carlos Guzman Alvarez
* All Rights Reserved.
*/
using System;
namespace PostgreSql.Data.PostgreSqlClient
{
public delegate void PgRowUpdatedEventHandler(object sender, PgRowUpdatedEventArgs e);
}
--- NEW FILE: PgRowUpdatingEventHandler.cs ---
/*
* PgSqlClient - ADO.NET Data Provider for PostgreSQL 7.4+
*
* The contents of this file are subject to the Initial
* Developer's Public License Version 1.0 (the "License");
* you may not use this file except in compliance with the
* License.
*
* Software distributed under the License is distributed on
* an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either
* express or implied. See the License for the specific
* language governing rights and limitations under the License.
*
* Copyright (c) 2003, 2005 Carlos Guzman Alvarez
* All Rights Reserved.
*/
using System;
namespace PostgreSql.Data.PostgreSqlClient
{
public delegate void PgRowUpdatingEventHandler(object sender, PgRowUpdatingEventArgs e);
}
|