I am having a problem on MYSQL database connectivity.
Not running smoothly. It take 2 to 10sec before records completely load on lynxgrid. Sometimes it hang up.
Is there any way to save and retrieve records in fastest way?
Not running smoothly. It take 2 to 10sec before records completely load on lynxgrid. Sometimes it hang up.
Is there any way to save and retrieve records in fastest way?
Code:
Set cn = New ADODB.Connection
cn.CursorLocation = adUseClient
cn.ConnectionString = "DRIVER={MySQL ODBC 3.51 Driver};" _
& "SERVER=192.168.1.180;" _
& "DATABASE=myTrial;" _
& "UID=root;" _
& "PWD=ssmpc;" _
& "OPTION=3"
cn.Open