Is it possible to call oracle database through ADO control
or Object?
Answer Posted / 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 View All Answers
What is the use of Visual Basic Document file?
What is file in vb?
Explain Default cursor Type and LockEdit type in DAO?
Why visual basic is used?
What is the difference between c++ and visual basic?
Explain about ADO control?
What are the new events in textbox that has been included in VB ?
Write the Steps in Creating an ActiveX Control?
What is the default workspace?
What do you know about chaining views.
When/Why should I use Option Explicit?
How would you create properties by using class Builder Wizard?
How would you access objects created in ActiveX Exe and ActiveX D1T ?
What is form in visual basic?
It is possible to access Text (x.txt) files? Explain.