Questions tagged [oracle-objects-ole]

Oracle Objects for OLE is a COM automation library that allows access to a Oracle Data Source using OLE, it should not be confused with Oracle Provider for OLEDB used for connecting to an ODBC Data Source. Please note: Only supported by Oracle 11.2 and below, consider using a standard method like Oracle Provider for OLEDB instead.

Oracle Objects for OLE (OO4O) allows you to access data stored in Oracle databases with any programming or scripting language that supports Microsoft COM Automation and ActiveX technology. Some of these include Visual Basic, Visual C++, Visual Basic for Applications (VBA), Active Server Pages (VBScript and JScript), and others that support COM automation.

For more information about Oracle Objects for OLE see the Official Documentation.

From Introducing Oracle Objects for OLE
Note: Oracle Database 11g Release 2 (11.2) is the last database version that supports Oracle Objects for OLE. Oracle Database versions, which are released after Oracle Database 11g Release 2 (11.2), will not support Oracle Objects for OLE. You can continue to use Oracle Objects for OLE with existing Oracle Database versions that are covered under the lifetime support policy of Oracle.

3 questions
2
votes
1 answer

Using Oracle client OO4O in VB.NET

I have converted an existing vb6 app that uses Oracle client OO4O to VB.NET. AFter many many errors and warnings that I have fixed the program now runs. But I get the following warning on a build that I am unable to resolve: "Could not determine…
John Agar
  • 29
  • 3
0
votes
0 answers

ORA-24373 When I try to run a query from VBscript

I am getting the following error ORA-24373: invalid length specified for statement The sql that I am trying to execute is a simple update query UPDATE Table1 SET C_LOGIN ='HIS LOGIN' Where C_USER='HIS' I only get this error when I try to run the…
Raxak
  • 389
  • 3
  • 17
0
votes
0 answers

How to execute multiple Oracle sql queries from VBscript?

I have a database object called objdb. From this object it seems that I can only execute one sql query at a time. if I insert a semi-colon in the end,it gives me a ORA-0911 invalid character error. For example, if I run objdb.executeSQl("select…
Raxak
  • 389
  • 3
  • 17