|
Gail Badner the 2 tests need to retrieve the sequence current value, running the tests with Derby I noticed they failed because of they were using
"select currval('" + sequenceName + "');"
so I created this class in the test package in order to manage the retrieve of the current sequence value.
I think the solution is to add the sql query used by DB2, Oracle and SQL Server to retrieve the sequence current value..
|