Quote:
Originally posted by marceloespinosa
Try to fill INFORMIXSQLHOST=<machine> environment variable
Marcelo E.
|
Thanks Marcelo.
I have now solved the problem and is able to connect to the database.
I could now see the tables after the connection.
However when I execute the
VB programs, I get an error
"Informix ODBC Driver-No SELECT permission"
It also has this message
"Method 'Refresh of object IAdodc' failed.
Following is the
VB code:
---------------------------------
Private Sub disp_Click()
adodc1.RecordSource = "select t_suno, t_nama, t_namb from baan.ttccom020800 where t_suno >= " & Trim$(rm1.Text) & " and t_suno <= " & Trim$(rm2.Text)
adodc1.Refresh
Set DataGrid1.DataSource = adodc1
End Sub
---------------------------------------------------------------------
I am using VB6 and Informix 7.3 and SDK2.81 for access.
What is this error???
Thanks and best regards,
ks wong