database connections
database connections
API Declarations
dim con as new adodb.connection
dim rs as new adodb.recordset
Rate database connections
(1(1 Vote))
set con=new adodb.connection
con.connectinString="Provider=microsoftjet3.4,path=c:\empdatabase...,"
con.open
set rs=new adodb.recordset
rs.open"select * from emp",con,adopendynamic,adlockpessimistic
text1.text=rs.fields(0)
text2.text=rs.fields(1)
database connections Comments
No comments yet — be the first to post one!
Post a Comment