Using NDbUnit with tables that have a table schema

Posted by KevinT on Stack Overflow See other posts from Stack Overflow or by KevinT
Published on 2009-08-24T13:42:02Z Indexed on 2010/03/21 10:01 UTC
Read the original article Hit count: 270

Filed under:

I am having issues using NDbUnit with tables that have their own schema - ie:

CREATE TABLE MYSCHEMA.MyTable01
(
    Id int NOT NULL,
    Description varchar(50) NOT NULL
)

Is this a supported scenario? What do I need to do to get this to work?

(working fine when the table is dbo.MyTable01)

© Stack Overflow or respective owner

Related posts about ndbunit