[Springnet-commits] Spring.Net/doc/reference/src dbprovider.xml, 1.14, 1.15
Brought to you by:
aseovic,
markpollack
From: Mark P. <mar...@us...> - 2007-12-06 05:48:25
|
Update of /cvsroot/springnet/Spring.Net/doc/reference/src In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv19230 Modified Files: dbprovider.xml Log Message: SPRNET-760 - StoredProcedure.DeclaredParameters.AddOut("A", OracleType.Cursor); causes double ':' in Oracle10g stored procedure call Index: dbprovider.xml =================================================================== RCS file: /cvsroot/springnet/Spring.Net/doc/reference/src/dbprovider.xml,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** dbprovider.xml 22 Nov 2007 00:14:06 -0000 1.14 --- dbprovider.xml 6 Dec 2007 05:48:21 -0000 1.15 *************** *** 62,65 **** --- 62,67 ---- string CreateParameterName(string name); + string CreateParameterNameForCollection(string name); + IDbMetadata DbMetadata { *************** *** 82,86 **** into a DAO exception. On .NET 1.1 the method IsDataAccessException is used to determine if the thrown exception is related to data access since in ! .NET 1.1 there isn't a common base class for database exceptions.</para> <para>The class <classname>DbProviderFactory</classname> creates --- 84,92 ---- into a DAO exception. On .NET 1.1 the method IsDataAccessException is used to determine if the thrown exception is related to data access since in ! .NET 1.1 there isn't a common base class for database exceptions. ! CreateParameterName is used to create the string for parameters used in a ! CommandText object while CreateParameterNameForCollection is used to ! create the string for a IDataParameter.ParameterName, typically contained ! inside a IDataParameterCollection.</para> <para>The class <classname>DbProviderFactory</classname> creates *************** *** 146,150 **** <listitem> ! <para><literal>MySql-5.1 </literal>- (aliased to <literal>MySql.Data.MySqlClient</literal>) MySQL, MySQL provider 5.1.2.2</para> --- 152,166 ---- <listitem> ! <para><literal>MySql-5.0.8.1</literal> - MySQL, MySQL provider ! 5.0.8.1</para> ! </listitem> ! ! <listitem> ! <para><literal>MySql-5.1 </literal>- MySQL, MySQL provider ! 5.1.2.2</para> ! </listitem> ! ! <listitem> ! <para><literal>MySql-5.1.4</literal> - (aliased to <literal>MySql.Data.MySqlClient</literal>) MySQL, MySQL provider 5.1.2.2</para> *************** *** 152,157 **** <listitem> ! <para><literal>Npgsql-1.0</literal> - Postgresql provider ! 1.0.0.0</para> </listitem> --- 168,178 ---- <listitem> ! <para><literal>Npgsql-1.0</literal> - Postgresql provider 1.0.0.0 (and ! 1.0.0.1 - were build with same version info)</para> ! </listitem> ! ! <listitem> ! <para><literal>Npgsql-2.0-beta1</literal> - Postgresql provider ! 1.98.1.0 beta 1</para> </listitem> *************** *** 179,183 **** <listitem> ! <para><literal>SQLite-1.0.43 </literal>- (aliased to System.Data.SQLite) - SQLite provider 1.0.43 for .NET Framework 2.0</para> --- 200,209 ---- <listitem> ! <para><literal>SQLite-1.0.43 </literal>SQLite provider 1.0.43 for .NET ! Framework 2.0</para> ! </listitem> ! ! <listitem> ! <para><literal>SQLite-1.0.47 </literal>- (aliased to System.Data.SQLite) - SQLite provider 1.0.43 for .NET Framework 2.0</para> |