i am using llblgen trial version 2.5 on Oracle 10g XE with .NET windows application.
I am trying to get the primary key value saved to the database with my parent table so that i could update the child tables with the parent key. When i try to do RefetchafterSave to update the parent table after Save, it always returns false. Could you please tell us how we can get the saved primary key value of the parent table?
THE PRIMARY KEY OF THE PARENT TABLE IS GENERATED AS A SEQUENCE NUMBER IN THE ORACLE DATABASE.
Code tried:
DataAccessAdapter adapter = new DataAccessAdapter(true);
bool bResult = adapter.SaveEntity(caseEntiry, true);
//bResult = adapter.FetchEntity(backup);
adapter.CloseConnection();