diff --git a/src/SQLite.cs b/src/SQLite.cs index 5d187c2b..cc6689e9 100644 --- a/src/SQLite.cs +++ b/src/SQLite.cs @@ -2600,7 +2600,7 @@ public partial class SQLiteCommand public string CommandText { get; set; } - internal SQLiteCommand (SQLiteConnection conn) + public SQLiteCommand (SQLiteConnection conn) { _conn = conn; _bindings = new List (); @@ -2658,8 +2658,6 @@ public List ExecuteQuery (TableMapping map) /// /// This can be overridden in combination with the /// method to hook into the life-cycle of objects. - /// - /// Type safety is not possible because MonoTouch does not support virtual generic methods. /// protected virtual void OnInstanceCreated (object obj) { @@ -2780,7 +2778,7 @@ void BindAll (Sqlite3Statement stmt) } } - internal static IntPtr NegativePointer = new IntPtr (-1); + static IntPtr NegativePointer = new IntPtr (-1); const string DateTimeExactStoreFormat = "yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fff";