コード例 #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
ファイル: SQLite3_UTF16.cs プロジェクト: rubenv/tripod
 internal Sqlite3_UTF16(SqliteDateFormats fmt)
   : base(fmt)
 {
 }
コード例 #6
0
 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
ファイル: SQLite3_UTF16.cs プロジェクト: IxelBox/UbuconQuiz
 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)
 {
 }