Example #1
0
 public void ManualDS_ASYNC_InsertThenUpsert_TypedRow()
 {
     using (var store = new OracleCanonicalDataStore(NOPApplication.Instance, getConnectString()))
     {
         store.QueryResolver.ScriptAssembly = SCRIPT_ASM;
         clearAllTables();
         TestLogic.ASYNC_InsertThenUpsert_TypedRow(store);
     }
 }
Example #2
0
 public void ManualDS_ExecuteCustomCommandHandler()
 {
     using (var store = new OracleCanonicalDataStore(NOPApplication.Instance, getConnectString()))
     {
         store.QueryResolver.ScriptAssembly = SCRIPT_ASM;
         store.QueryResolver.HandlerLocations.Add("Azos.Tests.Integration.CRUD.Queries, Azos.Tests.Integration");
         clearAllTables();
         TestLogic.ExecuteCustomCommandHandler(store);
     }
 }
Example #3
0
 public void ManualDS_ASYNC_Populate_OpenCursor()
 {
     using (var store = new OracleCanonicalDataStore(NOPApplication.Instance, getConnectString()))
     {
         store.QueryResolver.ScriptAssembly = SCRIPT_ASM;
         clearAllTables();
         TestLogic.Populate_ASYNC_OpenCursor(store);
         clearAllTables();
     }
 }
Example #4
0
 public void ManualDS_UpsertWithPredicate()
 {
     using (var store = new OracleCanonicalDataStore(NOPApplication.Instance, getConnectString()))
     {
         store.QueryResolver.ScriptAssembly = SCRIPT_ASM;
         clearAllTables();
         TestLogic.UpsertWithPredicate(store);
         clearAllTables();
     }
 }
Example #5
0
 public void ManualDS_GetSchemaAndTestFullGDID()
 {
     using (var store = new OracleCanonicalDataStore(NOPApplication.Instance, getConnectString()))
     {
         store.StringBool = false;
         store.FullGDIDS  = true;
         store.QueryResolver.ScriptAssembly = SCRIPT_ASM;
         clearAllTables();
         TestLogic.GetSchemaAndTestFullGDID(store);
     }
 }
Example #6
0
 public void ManualDS_TypedRowTestVariousTypes()
 {
     using (var store = new OracleCanonicalDataStore(NOPApplication.Instance, getConnectString()))
     {
         store.StringBool = false;
         store.FullGDIDS  = false;
         store.QueryResolver.ScriptAssembly = SCRIPT_ASM;
         clearAllTables();
         TestLogic.TypedRowTestVariousTypes(store);
     }
 }