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 name of the database table which we should delete data from.
Examples
Delete all the data held in a table.
// 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 ClearTable methodvarschemaName="dbo";vartableName="TestPerson";// Call the ClearTable method to delete all rowstester.ClearTable(schemaName,tableName);