|
Thread: Sql
-
Jul 21st, 2001, 02:29 PM
#1
Thread Starter
Hyperactive Member
Sql
rs.open (select * from tblname where fieldname='value')
I want to declare above line in a variable and execute later.
Thanks for help.
-
Jul 21st, 2001, 02:42 PM
#2
PowerPoster
no need...just execute when you need it
-
Jul 21st, 2001, 03:38 PM
#3
Junior Member
dim sql as string
sql="select * from tblname where fieldname='value'"
cnn.execute(sql)
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|