예제 #1
0
 internal SqliteConnectionWrapper(SQLitePCL.ISQLiteConnection connection, SqliteDateFormats fmt)
     : base(connection, fmt)
 {
     if (connection == null)
     {
         throw new ArgumentNullException("connection");
     }
     _sqliteDbConnection = connection;
 }
예제 #2
0
 internal SqliteBase(SqliteDateFormats fmt)
     : base(fmt)
 {
 }
예제 #3
0
 /// <summary>
 /// Initializes the conversion class
 /// </summary>
 /// <param name="fmt">The default date/time format to use for this instance</param>
 internal SqliteConvert(SqliteDateFormats fmt)
 {
     _datetimeFormat = fmt;
 }
예제 #4
0
        internal SqliteBase(SQLitePCL.ISQLiteConnection connection, SqliteDateFormats fmt)
            : base(fmt) {

        }
예제 #5
0
 internal Sqlite3_UTF16(SqliteDateFormats fmt)
   : base(fmt)
 {
 }
 internal SqliteConnectionWrapper(SQLitePCL.ISQLiteConnection connection, SqliteDateFormats fmt)
     : base(connection, fmt) 
 {
     if (connection == null) throw new ArgumentNullException("connection");
     _sqliteDbConnection = connection;
 }
예제 #7
0
파일: SQLiteBase.cs 프로젝트: rubenv/tripod
 internal SqliteBase(SqliteDateFormats fmt)
   : base(fmt) {}
예제 #8
0
 internal Sqlite3_UTF16(SqliteDateFormats fmt)
     : base(fmt)
 {
 }
예제 #9
0
 /// <summary>
 /// Initializes the conversion class
 /// </summary>
 /// <param name="fmt">The default date/time format to use for this instance</param>
 internal SqliteConvert(SqliteDateFormats fmt) {
     _datetimeFormat = fmt;
 }
예제 #10
0
 internal SqliteBase(SQLitePCL.ISQLiteConnection connection, SqliteDateFormats fmt)
     : base(fmt)
 {
 }