Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

OraDatabase Object

Status
Not open for further replies.

Matsul

IS-IT--Management
May 6, 2002
140
BE
How can I start to use OraDatabase in excel VBA ?

Dim OraDatabase As OraDatabase

gives user type not defined.

I have no options to add in in the add-in Manager.

thanks
 
I assume this is an Oracle database ??

If so, it should be under Tools>REFERENCES in the VBE - not as an add-in

Rgds, Geoff

We could learn a lot from crayons. Some are sharp, some are pretty and some are dull. Some have weird names and all are different colours but they all live in the same box.

Please read FAQ222-2244 before you ask a question
 
hI Geoff,

yes References looks more like it. I need to run select statment on an Oracle database. Would Oracle Analysis Wizard do the trick ?

thanks
 
Matsul - that sounds like it would do the trick - yes

Rgds, Geoff

We could learn a lot from crayons. Some are sharp, some are pretty and some are dull. Some have weird names and all are different colours but they all live in the same box.

Please read FAQ222-2244 before you ask a question
 
Matsul,

I would not name object as a class:

Instead of

Dim OraDatabase As OraDatabase

I would do this:

Dim mobjOraDatabase As OraDatabase

Are you using OO4O?

vladk
 
Hi ,

well I should be . Have to check if server has OO4O.

Meanwhile, I tried to add Oracle Analysis Wizard and got

Error in loading DLL

Any ideas ?

thanks,

Matthew
 
do you have any other Oracle options under Tools>References ??

Rgds, Geoff

We could learn a lot from crayons. Some are sharp, some are pretty and some are dull. Some have weird names and all are different colours but they all live in the same box.

Please read FAQ222-2244 before you ask a question
 
Hi there,

Yes I have

Oracle Application Desktop Intergrator
Oracle Data Control --> I tried this and it installed. I am suspecting that this is it
Oracle Image Control
Oracle InProc Server 3.0 Type Library
Oracle Language server GLDI GB
Oracle Language server GLDI PSU
Oracle Language server GLDI US

regards,

Matt
 
Well with Oracle Data Control I still got

User Type not defined

on

Dim OraDatabase As OraDatabase
 
try ticking all of them - should then work

then just untick 1 at a time until it breaks again - then you will know which one it is

Rgds, Geoff

We could learn a lot from crayons. Some are sharp, some are pretty and some are dull. Some have weird names and all are different colours but they all live in the same box.

Please read FAQ222-2244 before you ask a question
 
No luck as it gave me Error in loading DLL on trying any of the Oracle add ins
 
you should be able to get a download from the Oracle website (down at the mo) or here: for the odbc driver

Rgds, Geoff

We could learn a lot from crayons. Some are sharp, some are pretty and some are dull. Some have weird names and all are different colours but they all live in the same box.

Please read FAQ222-2244 before you ask a question
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top