Skip to Main Content

Integration

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

What is error code 208?

517255Sep 4 2006 — edited Sep 4 2006
I 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
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Oct 2 2006
Added on Sep 4 2006
1 comment
1,764 views