VBcoders Guest



Don't have an account yet? Register
 


Forgot Password?



Connect to oracle No need of ODBC

by Sanoop kurian (2 Submissions)
Category: Databases/Data Access/DAO/ADO
Compatability: VB 6.0
Difficulty: Unknown Difficulty
Originally Published: Mon 16th December 2002
Date Added: Mon 8th February 2021
Rating: (1 Votes)

Connect to oracle No need of "ODBC"

API Declarations


Dim rs As ADODB.Recordset
'REFERENCE -MICROSOFT ACTIVEX DATA OBJECTS 2.1 LIBRARY

Rate Connect to oracle No need of ODBC



Set db = New ADODB.Connection
db.Provider = "MSDAORA"
db.Open "", "USER NAME", "PASSWORD"
Set rs = New ADODB.Recordset
rs.ActiveConnection = db
rs.Open "select * from <TABLE NAME>"
End Sub


Download this snippet    Add to My Saved Code

Connect to oracle No need of ODBC Comments

No comments have been posted about Connect to oracle No need of ODBC. Why not be the first to post a comment about Connect to oracle No need of ODBC.

Post your comment

Subject:
Message:
0/1000 characters