I am gettin an error "No value given for one or more required parameters" when using a select case structure to query the database based on the first letter in the title. I could have sworn it was working fine yesterday. Can someone tell me if this is sytactically correct?
case "S"
sql = "select * from Clients"
sql = sql & " where Title like '"& choice & "%'"
sql = sql & " order by Title ASC"
set rs = connection.execute(sql)
Thanks
Kris
case "S"
sql = "select * from Clients"
sql = sql & " where Title like '"& choice & "%'"
sql = sql & " order by Title ASC"
set rs = connection.execute(sql)
Thanks
Kris