Exemplo n.º 1
0
 internal SqlCompactDataStore(SqlCompactConnection conn)
     : base(conn)
 {
     ExecuteCommands = new SqlCompactExecuteCommands();
     ObjectFinder    = new NoSchemaSupportObjectFinder();
 }
Exemplo n.º 2
0
 /// <summary>
 /// Creates a new datastore (integrated auth)
 /// </summary>
 /// <param name="Server">the server to connect to</param>
 /// <param name="Catalog">The catalog to use</param>
 public SqlCompactDataStore(string file)
     : this(new SqlCompactConnection(file))
 {
     ExecuteCommands = new SqlCompactExecuteCommands();
 }