jpbhattlive
MIS
i want script of vb6 to connect pervasive version 9 (9.6) or older
in database there is no username and password
kindly provide the code
in database there is no username and password
kindly provide the code
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
conn.ConnectionString = "DSN=DEMODATA"
conn.Open
Dim sTemp As String
sTemp = "select * from class"
Dim rs As New ADODB.Recordset
Set rs = New ADODB.Recordset
rs.CursorType = adOpenKeyset
Set rs = conn.Execute(sTemp)
rs.MoveFirst
msgbox ("MoveFirst returns" & rs(0).Value)
conn.Close