[求助]连接数据库的问题.
本人做了个网吧内部用的电影网站采纳的是网上找的源码遇到一个问题.如下:<%set rst=server.createobject("adodb.recordset")
sql="select * from learning where typeid='1' order by articleid desc"
rst.open sql,conn,1,1
if rst.eof and rst.bof then
response.write"该栏目还没有影片"
else
dim row_count5
row_count5=1
do while not rst.eof
%>
typeid 是影片类型
红字部分就是问题所在 在数据库中 typeid 的值是 动作电影 是一个文字文本格式 但typeid='1'换成typeid='动作电影'就会出错.请问这样才能让上面那段代码支持文字文本typeid='动作电影'...谢谢高人指点一下吧..我头都快大了