Hi,
A simple question for the wiz out there.. I have an ASP query that SELECT 17 fields..(from 1 table and 1 view).
I have a column named DESCRIPTION and after I do:
Set rsInfost=sConn.Execute(SQLt)
response.Write("desc: " & rsInfost("description"))
it give me nothing : "".
It's very strange because for the inserting it works and when I look into MS SQL Server 2000 i see the data. but I just cant get it...
Now I make another connection which i only SELECT that colum, i.e.:
SQLtest="SELECT DESCRIPTION from submission where NO=3
and it works... !!!
It's very strange and I don't understand... i have solve my problem by making 2 queries.. but it's ridiculous.. i wonder if someone has an idea out there ?
by the way my column DESCRIPTION is a TEXT(16).
Thanks.
A simple question for the wiz out there.. I have an ASP query that SELECT 17 fields..(from 1 table and 1 view).
I have a column named DESCRIPTION and after I do:
Set rsInfost=sConn.Execute(SQLt)
response.Write("desc: " & rsInfost("description"))
it give me nothing : "".
It's very strange because for the inserting it works and when I look into MS SQL Server 2000 i see the data. but I just cant get it...
Now I make another connection which i only SELECT that colum, i.e.:
SQLtest="SELECT DESCRIPTION from submission where NO=3
and it works... !!!
It's very strange and I don't understand... i have solve my problem by making 2 queries.. but it's ridiculous.. i wonder if someone has an idea out there ?
by the way my column DESCRIPTION is a TEXT(16).
Thanks.