File tree Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -2600,7 +2600,7 @@ public partial class SQLiteCommand
2600
2600
2601
2601
public string CommandText { get ; set ; }
2602
2602
2603
- internal SQLiteCommand ( SQLiteConnection conn )
2603
+ public SQLiteCommand ( SQLiteConnection conn )
2604
2604
{
2605
2605
_conn = conn ;
2606
2606
_bindings = new List < Binding > ( ) ;
@@ -2658,8 +2658,6 @@ public List<T> ExecuteQuery<T> (TableMapping map)
2658
2658
/// <remarks>
2659
2659
/// This can be overridden in combination with the <see cref="SQLiteConnection.NewCommand"/>
2660
2660
/// method to hook into the life-cycle of objects.
2661
- ///
2662
- /// Type safety is not possible because MonoTouch does not support virtual generic methods.
2663
2661
/// </remarks>
2664
2662
protected virtual void OnInstanceCreated ( object obj )
2665
2663
{
@@ -2780,7 +2778,7 @@ void BindAll (Sqlite3Statement stmt)
2780
2778
}
2781
2779
}
2782
2780
2783
- internal static IntPtr NegativePointer = new IntPtr ( - 1 ) ;
2781
+ static IntPtr NegativePointer = new IntPtr ( - 1 ) ;
2784
2782
2785
2783
const string DateTimeExactStoreFormat = "yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fff" ;
2786
2784
You can’t perform that action at this time.
0 commit comments