I can connect to a Sybase database from a WindowsApp project without
any problems, but when I use the same code to connect from an aspx.vb
file I get an OLEDB exception "Database server not found".
Code is:
Imports System.Data.Ole Db
Public Class WebForm1
Inherits System.Web.UI.P age
Private Sub Page_Load(ByVal sender As System.Object, ByVal e As
System.EventArg s) Handles MyBase.Load
Dim strConn As String
Dim objDBConn As OleDbConnection
Dim objCommand As OleDbCommand
strConn = "provider=ASAPr ov;data source=systemsu pport"
objDBConn = New OleDbConnection (strConn)
objCommand = New OleDbCommand("s pEventLog_Add_2 ",
objDBConn)
objCommand.Comm andType = CommandType.Sto redProcedure
objDBConn.Open( )
............... ..
If I paste this code into WindowsApp form it runs fine!
Is there something inherently different in the way I should connect to
the database in ASP.
I have the same problem when I call method functions in components
from the ASP that simply return arraylists - they work fine when
called from Windows apps but not when called from the ASP.
Tx,
Louise
any problems, but when I use the same code to connect from an aspx.vb
file I get an OLEDB exception "Database server not found".
Code is:
Imports System.Data.Ole Db
Public Class WebForm1
Inherits System.Web.UI.P age
Private Sub Page_Load(ByVal sender As System.Object, ByVal e As
System.EventArg s) Handles MyBase.Load
Dim strConn As String
Dim objDBConn As OleDbConnection
Dim objCommand As OleDbCommand
strConn = "provider=ASAPr ov;data source=systemsu pport"
objDBConn = New OleDbConnection (strConn)
objCommand = New OleDbCommand("s pEventLog_Add_2 ",
objDBConn)
objCommand.Comm andType = CommandType.Sto redProcedure
objDBConn.Open( )
............... ..
If I paste this code into WindowsApp form it runs fine!
Is there something inherently different in the way I should connect to
the database in ASP.
I have the same problem when I call method functions in components
from the ASP that simply return arraylists - they work fine when
called from Windows apps but not when called from the ASP.
Tx,
Louise
Comment