Example #1
0
 public void ManualDS_QueryInsertQuery_TypedRow()
 {
     using (var store = new MsSqlDataStore(NOPApplication.Instance, getConnectString()))
     {
         store.QueryResolver.ScriptAssembly = SCRIPT_ASM;
         clearAllTables();
         TestLogic.QueryInsertQuery_TypedRow(store);
     }
 }
Example #2
0
 public void ManualDS_ASYNC_Populate_OpenCursor()
 {
     using (var store = new MsSqlDataStore(NOPApplication.Instance, getConnectString()))
     {
         store.QueryResolver.ScriptAssembly = SCRIPT_ASM;
         clearAllTables();
         TestLogic.Populate_ASYNC_OpenCursor(store);
         clearAllTables();
     }
 }
Example #3
0
 public void ManualDS_GetSchemaAndTestFullGDID()
 {
     using (var store = new MsSqlDataStore(NOPApplication.Instance, getConnectString()))
     {
         store.StringBool = false;
         store.FullGDIDS  = true;
         store.QueryResolver.ScriptAssembly = SCRIPT_ASM;
         clearAllTables();
         TestLogic.GetSchemaAndTestFullGDID(store);
     }
 }
Example #4
0
 public void ManualDS_TypedRowTestVariousTypes()
 {
     using (var store = new MsSqlDataStore(NOPApplication.Instance, getConnectString()))
     {
         store.StringBool = false;
         store.FullGDIDS  = false;
         store.QueryResolver.ScriptAssembly = SCRIPT_ASM;
         clearAllTables();
         TestLogic.TypedRowTestVariousTypes(store);
     }
 }