Hello!
I'm encountering an error when trying to connect to remote MSSQL 2005 DB
I've downloaded last agraham library (1.9)
this is my code:
in attached the error I get!
I'm encountering an error when trying to connect to remote MSSQL 2005 DB
I've downloaded last agraham library (1.9)
this is my code:
B4X:
Sub App_Start
Menu.Show
'apro la connessione con il db remoto
Sql1.New1
If SQL1.Open("Persist Security Info=False;Integrated Security=False;Server=192.168.1.90,1433;initial catalog=Ahr60; user id=sa;password=fiesta;") Then
Msgbox("Conessione al DB Stabilita con Successo!!!","My First Program",cMsgboxYesNo,cMsgboxHand)
Else
Msgbox("Impossibile Connettersi al DB!!!","My First Program",cMsgboxYesNo,cMsgboxHand)
Msgbox(sql1.LastError,"")
End If
End Sub
in attached the error I get!