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
Hi @Kanti1702 , that's not possible yet and I also don't want to keep the plugin as simple enough and not depend on too many ways to get it working. So currently your only option is to ...
I have below code in my spec file:
@dbunit(configure={ IDatabaseTester it ->
it.setUpOperation = InsertIdentityOperation.REFRESH
it.tearDownOperation = InsertIdentityOperation.DELETE
})
def content = {
abc(id:123, name:'test')
}
This working finr in MySql, but when I try to run for MSSQL it gives org.dbunit.dataset.NoSuchTableException : abc error.
I have verified the 'abc' table is already there in MSSSQL database.
While debugging I have found that connection.getSchema() return "".
So how I can pass schema 'dbo' to @dbunit extension?
I don't want to pass in every class @dbunit(schema='dbo', configure......) like this.
Instead is it possible to get schema from field like we get datasource.
The text was updated successfully, but these errors were encountered: