I have this database record from my tblLock:
Country Version Account
HONG KONG Budget A1111
I need to create a query string that will bring this into my asp page but because of the space I am not able to retrieve the record
selCountry = "HONG KONG"
selVersion = "Budget"
strsql = "SELECT * from tblLock where version = '" & version & "' and replace(country," ","") = '" & replace(selCountry," ","") & "'"
I have been struggling with this for two days now and I think it's about time I consult some professional.
Any help will be greatly appreciated.
Country Version Account
HONG KONG Budget A1111
I need to create a query string that will bring this into my asp page but because of the space I am not able to retrieve the record
selCountry = "HONG KONG"
selVersion = "Budget"
strsql = "SELECT * from tblLock where version = '" & version & "' and replace(country," ","") = '" & replace(selCountry," ","") & "'"
I have been struggling with this for two days now and I think it's about time I consult some professional.
Any help will be greatly appreciated.