What is error code 208?
517255Sep 4 2006 — edited Sep 4 2006I am trying to use new version of Oracle TopLink (10.1.3.0)
I have correctly defined mapping for a table with toplink enabled class.
My code is like
ExpressionBuilder builder = new ExpressionBuilder();
Expression exp = builder.get("id").equal( 123);
ReadObjectQuery query = new ReadObjectQuery(Emp.class, exp );
Emp emp = (Emp)this.session.executeQuery( a);
But I am getting following error.
Exception [TOPLINK-4002] (Oracle TopLink - 10g Release 3 (10.1.3.0.0) (Build 060118)): oracle.toplink.exceptions.DatabaseException
Internal Exception: java.sql.SQLException: [BEA][SQLServer JDBC Driver][SQLServer]Invalid object name 'emp'.Error Code: 208
Can anybody please help?
Thanks & Regards