#Region Project Attributes
#AdditionalJar: yourConnectorJarHere
#End Region
Sub Process_Globals
Public SQL1 As SQL
End Sub
Sub AppStart (Form1 As Form, Args() As String)
'this line is for direct connection.
SQL1.Initialize2("org.mariadb.jdbc.Driver","jdbc:mysql://pathToServer/database","user","password")
End Sub