hi guys, just started a small project and i am working with a database with a column of varchar(64). (i want to store a short string in that column)
when i try to query that column, eg
SQL = "Select Comments from table where username = '"&username&"'"
set results = objConn.Execute(SQL)
now so far thats fine, but whenever i try to do anything with the 'results' variable i get an error 'type mismatch'
vartype of 'results' return 9 as automation object.
so my question is, how do i obtain the string stored and/or is there any other way i could do this easier?
cheers
when i try to query that column, eg
SQL = "Select Comments from table where username = '"&username&"'"
set results = objConn.Execute(SQL)
now so far thats fine, but whenever i try to do anything with the 'results' variable i get an error 'type mismatch'
vartype of 'results' return 9 as automation object.
so my question is, how do i obtain the string stored and/or is there any other way i could do this easier?
cheers