Oracle db ??
Posted: Thu Feb 27, 2014 11:34 am
how to connect to oracle database ?
values:
livecode:
I receive a "revdberr, invalid database type" error
thank you
values:
Code: Select all
DW=
(DESCRIPTION=
(ADDRESS=
(PROTOCOL=TCP)
(HOST=10.30.1.11)
(PORT=1521)
)
(CONNECT_DATA=
(SID=TSH1)
)
)
Code: Select all
put "10.30.1.11:1521" into DBHOST_Oracle
put "TSH1" into databaseName
put "myuser" into DBUSER_Oracle
put "mypwd" into DBPSWD_Oracle
put revOpenDatabase("oracle",databaseName, DBHOST_Oracle, DBUSER_Oracle,DBPSWD_Oracle) into gConnectionID_Oracle
thank you