Added Mono.Data.Sqlite to build. Restored the sealed classes
authorMarek Habersack <grendel@twistedcode.net>
Thu, 22 Feb 2007 16:46:23 +0000 (16:46 -0000)
committerMarek Habersack <grendel@twistedcode.net>
Thu, 22 Feb 2007 16:46:23 +0000 (16:46 -0000)
svn path=/trunk/mcs/; revision=73325

mcs/class/ChangeLog
mcs/class/Makefile
mcs/class/Mono.Data.Sqlite/Mono.Data.Sqlite_2.0/SQLiteCommand.cs
mcs/class/Mono.Data.Sqlite/Mono.Data.Sqlite_2.0/SQLiteCommandBuilder.cs
mcs/class/Mono.Data.Sqlite/Mono.Data.Sqlite_2.0/SQLiteConnection.cs
mcs/class/Mono.Data.Sqlite/Mono.Data.Sqlite_2.0/SQLiteConnectionStringBuilder.cs
mcs/class/Mono.Data.Sqlite/Mono.Data.Sqlite_2.0/SQLiteDataAdapter.cs
mcs/class/Mono.Data.Sqlite/Mono.Data.Sqlite_2.0/SQLiteFactory.cs
mcs/class/Mono.Data.Sqlite/Mono.Data.Sqlite_2.0/SQLiteParameter.cs
mcs/class/Mono.Data.Sqlite/Mono.Data.Sqlite_2.0/SQLiteParameterCollection.cs
mcs/class/Mono.Data.Sqlite/Mono.Data.Sqlite_2.0/SQLiteTransaction.cs

index 1c6edbda4569fa832a0373e46694ab4853528e64..2439d8158e1b4fd8b4d43db24132e06bcd2cc44b 100644 (file)
@@ -1,3 +1,7 @@
+2007-02-22  Marek Habersack  <grendello@gmail.com>
+
+       * Makefile: Added Mono.Data.Sqlite to build.
+
 2007-02-05  Marek Safar  <marek.safar@gmail.com>
 
        * Makefile: Add System.Core to build.
index 5712093844714e2ba6c66cdd7b86d4ac5d64dbf2..855a2a3f88b2fd4cccad89b9d8ff7886667ad646 100644 (file)
@@ -59,6 +59,7 @@ common_dirs := \
        System.Runtime.Remoting         \
        System.Configuration.Install    \
        System.Management               \
+       Mono.Data.Sqlite                \
        Mono.Data.SqliteClient          \
        Mono.Data.SybaseClient          \
        Mono.Data.TdsClient             \
index f354126d0d17cf8ce090f4c8bb98874dc5123923..1dae2a3d645aeca343fa4614c5925793966e6ca2 100644 (file)
@@ -52,7 +52,7 @@ namespace Mono.Data.Sqlite
 #if !PLATFORM_COMPACTFRAMEWORK
   [Designer("Sqlite.Designer.SqliteCommandDesigner, Sqlite.Designer, Version=1.0.31.0, Culture=neutral, PublicKeyToken=db937bc2d44ff139"), ToolboxItem(true)]
 #endif
-  public class SqliteCommand : DbCommand, ICloneable
+  public sealed class SqliteCommand : DbCommand, ICloneable
   {
     /// <summary>
     /// The command text this command is based on
index 65844a99e27dad903a03425fabea9d836efdcb6c..4a3a18c0e2f556fe01c2411f289795b325ba18b5 100644 (file)
@@ -49,7 +49,7 @@ namespace Mono.Data.Sqlite
   /// <summary>
   /// Sqlite implementation of DbCommandBuilder.
   /// </summary>
-  public class SqliteCommandBuilder : DbCommandBuilder
+  public sealed class SqliteCommandBuilder : DbCommandBuilder
   {
     private EventHandler<RowUpdatingEventArgs> _handler;
 
index edf217982ac224fc72ebbcb2235749303ea23721..aa9b0edf2efec2a0b015fa97df7fe093f6011911 100644 (file)
@@ -121,7 +121,7 @@ namespace Mono.Data.Sqlite
   /// </item>
   /// </list>
   /// </remarks>
-  public class SqliteConnection : DbConnection, ICloneable
+  public sealed class SqliteConnection : DbConnection, ICloneable
   {
     private const string _dataDirectory = "|DataDirectory|";
 
index d7d357c561ed7daf96940f9b11e1e7b18ba45dad..2fa72cedc7a7738b1c231d825d5c0c37af16c445 100644 (file)
@@ -55,7 +55,7 @@ namespace Mono.Data.Sqlite
   /// </summary>
   [DefaultProperty("DataSource")]
   [DefaultMember("Item")]
-  public class SqliteConnectionStringBuilder : DbConnectionStringBuilder
+  public sealed class SqliteConnectionStringBuilder : DbConnectionStringBuilder
   {
     /// <summary>
     /// Properties of this class
index d4a19ec10b7d841a26e5dd5ef209cf19c9253124..60bb1d8b52b6d1b7288cddbd73bc0a4c29dbb24e 100644 (file)
@@ -53,7 +53,7 @@ namespace Mono.Data.Sqlite
   [ToolboxItem("Sqlite.Designer.SqliteDataAdapterToolboxItem, Sqlite.Designer, Version=1.0.31.0, Culture=neutral, PublicKeyToken=db937bc2d44ff139")]
   [Designer("Microsoft.VSDesigner.Data.VS.SqlDataAdapterDesigner, Microsoft.VSDesigner, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
 #endif
-  public class SqliteDataAdapter : DbDataAdapter
+  public sealed class SqliteDataAdapter : DbDataAdapter
   {
     private static object _updatingEventPH = new object();
     private static object _updatedEventPH = new object();
index 3ede140781425f103fc2b6d5805d720cc1c259dd..7fe6f8ef4131ecdc759cb265d5783c09b2e007de 100644 (file)
@@ -47,7 +47,7 @@ namespace Mono.Data.Sqlite
   /// <summary>
   /// Sqlite implementation of DbProviderFactory.
   /// </summary>
-  public class SqliteFactory : DbProviderFactory
+  public sealed class SqliteFactory : DbProviderFactory
   {
     /// <summary>
     /// Static instance member which returns an instanced SqliteFactory class.
index 64e263c8630c86cac65b3d59c41216c8e9c7b9eb..d85d574fdc51d5d7c605c2065ab55d86a373c645 100644 (file)
@@ -48,7 +48,7 @@ namespace Mono.Data.Sqlite
   /// <summary>
   /// Sqlite implementation of DbParameter.
   /// </summary>
-  public class SqliteParameter : DbParameter, ICloneable
+  public sealed class SqliteParameter : DbParameter, ICloneable
   {
     /// <summary>
     /// The data type of the parameter
index 675555f2c6b31b73fe5dc28500b9bdd7eb77617f..2267c2718d8cfdde1da18173909531c7f853f330 100644 (file)
@@ -54,7 +54,7 @@ namespace Mono.Data.Sqlite
 #if !PLATFORM_COMPACTFRAMEWORK
   [Editor("Microsoft.VSDesigner.Data.Design.DBParametersEditor, Microsoft.VSDesigner, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "System.Drawing.Design.UITypeEditor, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"), ListBindable(false)]
 #endif
-  public class SqliteParameterCollection : DbParameterCollection
+  public sealed class SqliteParameterCollection : DbParameterCollection
   {
     /// <summary>
     /// The underlying command to which this collection belongs
index 239658c16835a0f6023106dc079be22bc2a451c7..dc79c8656b2132caa4e32f62a60d458d1e1d9cf3 100644 (file)
@@ -47,7 +47,7 @@ namespace Mono.Data.Sqlite
   /// <summary>
   /// Sqlite implementation of DbTransaction.
   /// </summary>
-  public class SqliteTransaction : DbTransaction
+  public sealed class SqliteTransaction : DbTransaction
   {
     /// <summary>
     /// The connection to which this transaction is bound