Oracle VB Connectivity [message #124589] |
Mon, 20 June 2005 06:59 |
santosh_skr
Messages: 3 Registered: June 2005 Location: Jamshedpur, India
|
Junior Member |
|
|
Hi,
Can any one help me. How did I get connect a VB Page with a Oracle database. I try some time but it showing DSN error. So pls. mention the code which are written.
Thanks.
|
|
|
|
Re: Oracle VB Connectivity [message #125291 is a reply to message #124638] |
Fri, 24 June 2005 04:43 |
santosh_skr
Messages: 3 Registered: June 2005 Location: Jamshedpur, India
|
Junior Member |
|
|
Hi,
I just want to know the codes of connecting a table in oracle with vb pages. The connection code written below for your reference
Public con As ADODB.Connection
Public Sub connect()
Set con = New ADODB.Connection
con.Open "dsn=customer", "scott"
End Sub
When I run the program it will showing a dsn error.
|
|
|