[Adapdev-commits] Adapdev/src/Adapdev.Data Adapdev.Data.csproj,1.10,1.11 ProviderInfoManager.cs,1.1.
Status: Beta
Brought to you by:
intesar66
From: Sean M. <int...@us...> - 2005-09-18 03:04:54
|
Update of /cvsroot/adapdev/Adapdev/src/Adapdev.Data In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2143/src/Adapdev.Data Modified Files: Adapdev.Data.csproj ProviderInfoManager.cs Log Message: - Broke up SchemaBuilder into multiple implementations - Upgraded mySql driver to 1.0.5 Index: ProviderInfoManager.cs =================================================================== RCS file: /cvsroot/adapdev/Adapdev/src/Adapdev.Data/ProviderInfoManager.cs,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** ProviderInfoManager.cs 28 Feb 2005 01:31:47 -0000 1.1.1.1 --- ProviderInfoManager.cs 18 Sep 2005 03:04:45 -0000 1.2 *************** *** 123,127 **** /// Gets the object by name /// </summary> ! /// <param name="ct">Provider type</param> /// <param name="typeName">Name of the type.</param> /// <returns></returns> --- 123,127 ---- /// Gets the object by name /// </summary> ! /// <param name="providerType">Provider type</param> /// <param name="typeName">Name of the type.</param> /// <returns></returns> *************** *** 293,297 **** { string _name = name.Trim().ToLower(); - string _id = id.ToString(); if (ht.Contains(_name)) { --- 293,296 ---- Index: Adapdev.Data.csproj =================================================================== RCS file: /cvsroot/adapdev/Adapdev/src/Adapdev.Data/Adapdev.Data.csproj,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** Adapdev.Data.csproj 25 Jul 2005 02:22:15 -0000 1.10 --- Adapdev.Data.csproj 18 Sep 2005 03:04:45 -0000 1.11 *************** *** 231,234 **** --- 231,239 ---- /> <File + RelPath = "Schema\AbstractSchemaBuilder.cs" + SubType = "Code" + BuildAction = "Compile" + /> + <File RelPath = "Schema\ColumnSchema.cs" SubType = "Code" *************** *** 261,264 **** --- 266,284 ---- /> <File + RelPath = "Schema\ISchemaBuilder.cs" + SubType = "Code" + BuildAction = "Compile" + /> + <File + RelPath = "Schema\MySqlSchemaBuilder.cs" + SubType = "Code" + BuildAction = "Compile" + /> + <File + RelPath = "Schema\OleDbSchemaBuilder.cs" + SubType = "Code" + BuildAction = "Compile" + /> + <File RelPath = "Schema\ParameterSchema.cs" SubType = "Code" |