You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The SQL statement you wish to execute against the database.
Examples
// Setup the Database Tester object using the MS SQL implementationvarconnectionstring=@"Data Source=(localdb)\MSSQLLocalDB;Initial Catalog=tempdb;Integrated Security=SSPI;";VulcanAnalytics.DBTester.DatabaseTestertester=newVulcanAnalytics.DBTester.MsSqlDatabaseTester(connectionstring);// Parameters for ExecuteStatementWithoutResultmethodvarsqlStatement="CREATE SCHEMA [test];";// Call the ExecuteStatementWithoutResult method to execute the SQL statementtester.ExecuteStatementWithoutResult(sqlStatement);Assert.IsTrue(tester.HasSchema("test"));