quote:
Originally posted by ruirib
What SQL statement are you using? How are you processing the recordset?
I just use the normal stuff
StrSql="Select * from "&strTablePrefix&"MEMBERS where m_name='"&TRIM(rs("nombre"))&"'"
set rsConfig = my_Conn.Execute (strSql)
IF rsConfig.EOF THEN
[some code here]
else
response.write(rsconfig("M_POSTS")) [<--- does not display anything]
response.write(rsconfig("M_M_LASTPOSTDATE")) [<--- displays last date of a post]
End if
What is strange that I just canīt display anything from that column, any other column is OK. The column is INT type, but that shouldnīt be a problem, should it?
All the conection are done as gpctexas sai and work fine