Page 1 of 1

How to create a database using ODAC

Posted: Wed 16 Nov 2011 10:17
by ewen
Now the code using DBE. like this.
TDatabase *db = new TDatabase( NULL );

So,How to create a database using ODAC?

Posted: Wed 16 Nov 2011 11:39
by AlexP
Hello,

The ODAC TOraConnection component corresponds to the BDE TDatabase component, and you can use the same code to create it:

TOraSession *db = new TOraSession(NULL);

Posted: Thu 17 Nov 2011 06:01
by ewen
It's works.
Thank you.