Expand my Community achievements bar.

Replace ADBC methods with OLEDB methods?

Avatar

Former Community Member
Hello

I like to replace ADBC connection with OLEDB connection in Livecycle

Designer Forms V7.

Actually I'am using the followings methods:

var myConnection = ADBC.newConnection("myDb","myId","myPass");

myStatement = myConnection.newStatement();

var SQLStatement = "insert into tb1 values('1','2')";

myStatement.execute(SQLStatement);

myStatement.Close();

Anyone knows how i could replace ADBC connection with OLEDB connection ?

Thanks for your help.
0 Replies