public Scalar()
        {
            cli = new JarvisClient(Configurations.TestDbLocation);

            //Because this is highly dependant on checking string validity, we're going to go ahead and truncate the test table here
            cli.ExecuteNonQuery("delete from ScalarTester").GetAwaiter().GetResult();

            //We're going to put known test data into the table
            cli.ExecuteNonQuery("insert into ScalarTester (TextColumn, IntegerColumn, DateColumn, FloatColumn) values ('testData', 123, '1/1/2021', 12.23)").GetAwaiter().GetResult();
        }
 public NonQuery()
 {
     cli = new JarvisClient(Configurations.TestDbLocation);
 }
 public Sql_Generator_Delete()
 {
     cli = new JarvisClient(Configurations.TestDbLocation);
 }