Beispiel #1
0
 public static BasicSQLiteDriver CreateDriver(string connectionString)
 {
     try
     {
         BasicSQLiteDriver d = new BasicSQLiteDriver(connectionString);
         return(d);
     }
     catch (SQLiteException)
     {
         throw;
     }
 }
 public static BasicSQLiteDriver CreateDriver(string connectionString) {
     try
     {
         BasicSQLiteDriver d = new BasicSQLiteDriver(connectionString);
         return d;
     }
     catch (SQLiteException)
     {
         throw;
     }
 }