Is it possible to call oracle database through ADO control
or Object?



Is it possible to call oracle database through ADO control or Object?..

Answer / subashini

yes,its possible.

First select the Microsoft ActiveX Data Objects 2.0 library
in References


Dim conn as New ADODB.Connection
Dim rs as New ADODB.Recorset

Private sub Form_Load()
conn.Open "Provider=MSDAORA.1;userid=scott;password=tiger;
persist security info=true"
conn.CursorLocation=adUseClient
End sub

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More Visual Basic Interview Questions

I want to develop a stand alone application which can communicate with the existing applications in the system. On which this application should be based on: Standard Exe, Active-X Exe, Active-X Dll.

2 Answers  


How can you Add API functions to your Application?

1 Answers  


How would you navigate between one document to another document

0 Answers  


Wat is multithreading in VB?

4 Answers  


What areTypes of compatability in VB and their usage ?

4 Answers   MBT,






How would you attach an ActiveX control in Your Application?

1 Answers  


What is the use of property page Wizard in ActiveX Control?

0 Answers  


How do I create controls dynamically (at run-time)?

0 Answers  


It is possible to access Text (x.txt) files? Explain.

0 Answers  


What is the use of Visual Basic Document file?

0 Answers  


HTML stands for What? Use of HTML ?

2 Answers  


What type of multi-threading does VB6 implement?

3 Answers  


Categories