VBcoders Guest



Don't have an account yet? Register
 


Forgot Password?



Determine Oracle Version Number with VB

by Antonio Zavala (2 Submissions)
Category: Databases/Data Access/DAO/ADO
Compatability: VB 6.0
Difficulty: Unknown Difficulty
Originally Published: Tue 18th February 2003
Date Added: Mon 8th February 2021
Rating: (1 Votes)

Determine Oracle Version Number with VB

Rate Determine Oracle Version Number with VB



Dim OraSess As Object
On Error Goto NotInstalled:
Set OraSess = CreateObject("OracleInProcServer.XOraSession")
MsgBox "Oracle Version = " & OraSess.OipVersionNumber
Set OraSess = Nothing
exit sub
NotInstalled:
MsgBox "Oracle is not installed!"
End Sub


Download this snippet    Add to My Saved Code

Determine Oracle Version Number with VB Comments

No comments have been posted about Determine Oracle Version Number with VB. Why not be the first to post a comment about Determine Oracle Version Number with VB.

Post your comment

Subject:
Message:
0/1000 characters