Here's the situation guys, I make a program that only in one computer the data will be saved. what I mean is I put this program in two or three computers then one must be the "server"? Can you guide me how to do this... here's my code to connect in SQL SERVER.
Public adoconn as ADODB.Connection
Sub main()
Set adoconn = New ADODB.Connection
adoconn.ConnectionString = "DSN=My Sample; DESC=My SQL Server; SERVER=localhost; DATABASE=chatdbase; OPTION=3; PORT=3306;UID=;PASSSWORD=;STMT=;"
adoconn.Open
End Sub
Please configure my code if it is right.
Hope you get what I mean...thanks!