In the article listed below, it says to add this line to my database parameters.
timestamp=0
In PB9.2 how do I do this?
Thank you.
https://www.appeon.com/developers/get-help/knowledgebase/ora-24334-no-descriptor-position.html
In the article listed below, it says to add this line to my database parameters.
timestamp=0
In PB9.2 how do I do this?
Thank you.
https://www.appeon.com/developers/get-help/knowledgebase/ora-24334-no-descriptor-position.html
I have just checked in one of our old Oracle applications and it has code like this:
SQLCA.DBMS = "ORA Oracle"
sqlca.logid = db_user
sqlca.logpass = db_password
//Default Database Name
sqlca.servername = '@' + db_connect
sqlca.dbparm = 'DisableBind=1'
connect;
if sqlca.sqlcode <> 0 then
MessageBox ("Cannot Connect to Database", sqlca.sqlerrtext)
return -1
end if
You could just change the dbparm line to:
sqlca.dbparm = 'DisableBind=1, timestamp=0'
Hope that helps
David