Hi,
I make a program with Visual basic 2005, en use olso Microsoft SQL server.
In thise program i use a database, with 3 tables.
Stand alone it works perfect.
Now i place al files, one a Novell netware 3.12 server, and try to open the program.
I have one problem, when i do this.
The program cane not make a connection with the database, one the netware server, and i cat a error.
Is there a solution for this problem
This is the code i use for a connection
|
Code:
|
Private Sub GridOphalen()
Dim mijnDataAdapter As SqlDataAdapter
Dim mijnDataSet As DataSet
Dim connectionString As String = My.Settings.HulpstoffenConnectionString()
Dim SQLString As String = "Select * From Hulpstof"
mijnDataAdapter = New SqlDataAdapter(SQLString, connectionString)
mijnDataSet = New DataSet
mijnDataAdapter.Fill(mijnDataSet)
DataGridView1.DataSource = mijnDataSet.Tables(0)
End Sub |
Gr Fred