drop table with VB
drop table with VB
API Declarations
dim y as new ADODB.Command
Rate drop table with VB
(1(1 Vote))
private sub command1_click()
set y=new ADODB.Command
y.CommandText="drop table imtiyaz"
y.ComandType=adCmdText
set y.ActiveConnection=x
y.Execute
msgbox"dropped"
end sub
private sub form_load()
x.open "ss","imtiyaz","vicky" 'dsn name,login id,password respectively
end sub
drop table with VB Comments
No comments yet — be the first to post one!
Post a Comment