Hi Erel I went through that link however is there anything around connecting to a remote SQL Server? Or can I use the code below from that thread and replace the localhost with the external IP address of the SQL server?
#Region Project Attributes#MainFormWidth: 600#MainFormHeight: 400#AdditionalJar: jtds-1.3.1.jar#End RegionSub Process_GlobalsPrivate sql1 AsSQLEnd SubSub AppStart (Form1 AsForm, Args() AsString)Try
sql1.Initialize("net.sourceforge.jtds.jdbc.Driver","jdbc:jtds:sqlserver://localhost:1433/NombreBD;user=xxx;password=yyy")CatchLog("Error de conexión con la BD "EndTry
End Sub