Hi, I was reading some VB code in a .asp file.
Here's the code"
Can anybody tell me what is the xxx value? Is it a int representing the smallest somedata value, or is it a array?
Thanks in advance!!
Here's the code"
Code:
SQL = "SELECT somedata as somedata FROM XTab ORDER BY somedata ASC"
set rs = OBJdbConnection.execute(SQL)
if rs.eof then
' do something
else
[COLOR=red]xxx = rs("somedata")[/color]
Can anybody tell me what is the xxx value? Is it a int representing the smallest somedata value, or is it a array?
Thanks in advance!!