Hi All,
Trying to drop/create table with orm but facing a situation:
When I try to drop/create table I see tables are created but data. I have a sql which contains data but no luck. I have proper definitions for the sql that has to be imported when I drop/create.
this.ormsettings = {autorebuild="false"};
this.ormsettings.dialect= "oracle10g";
this.ormsettings.logsql="true";
this.ormSettings.dbCreate = "dropcreate"; //"dropcreate";
this.ormsettings.sqlscript="mydata.sql";
this.ormsettings.eventhandling=true;
this.ClientManagement="No";
this.sessionmanagement = true;
this.sessiontimeout = createTimeSpan(0,2,0,0);
When I look at hibernate log files I see following line - which I believe has no sense because as I googled and I see that this line of log is very common and no one is commenting about it.-
Only clue that I have:
</pre>08/16 11:22:00 [jrpp-3] HIBERNATE DEBUG - import file not found: /import.sql
Any ideas?