由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
BuildingWeb版 - 请教一个'Recordset.RecordCount'的问题。
相关主题
ASP古怪问题about project 1
一个访问权限问题。java <-> cgi/perl 急问
Pull down menu and ASPpost problem
How to change pages in ASP message board[转载] SSH与MySQL冲突?
真心求教[转载] HELP: ASP.NET DEBUG ERROR
请问一个数据库 连接的问题。关于网站数据库的一个问题
求教关于ASP中的数据库连接问题[转载] htpasswd
[转载] how to link to remote access database?[转载] ASP.NET问题请教-如何生成IMAGE MAP
相关话题的讨论汇总
话题: name话题: request话题: 问题
进入BuildingWeb版参与讨论
1 (共1页)
j*****o
发帖数: 320
1
' 一段asp程序如下:
set myConnection=Server.CreateObject("ADODB.Connection")
set myRecordset=Server.CreateObject ("ADODB.Recordset")
myConnection.Open "DSN","username","password"
myRecordset.ActiveConnection =myConnection
myRecordset.Source="select * from public where name='"+request("name")+"'"
myRecordset.open
Response.write(request("name")) '输出内容正确。
Response.write(myRecordset("name")) '输出内容也正确
Response.Write(myRecordset.RecordCount) '不管数据库有多少记录,总是返回-1
根据MSDN的说明:
使用 RecordCount 属性可确定 Records
j*****o
发帖数: 320
2
好像是光标类型不对。 :)

【在 j*****o 的大作中提到】
: ' 一段asp程序如下:
: set myConnection=Server.CreateObject("ADODB.Connection")
: set myRecordset=Server.CreateObject ("ADODB.Recordset")
: myConnection.Open "DSN","username","password"
: myRecordset.ActiveConnection =myConnection
: myRecordset.Source="select * from public where name='"+request("name")+"'"
: myRecordset.open
: Response.write(request("name")) '输出内容正确。
: Response.write(myRecordset("name")) '输出内容也正确
: Response.Write(myRecordset.RecordCount) '不管数据库有多少记录,总是返回-1

j*****o
发帖数: 320
3
但是,在Recordset被打开前加入:
myRecordset.CursorType = adOpenStatic
还是不行呀。 困惑,困惑。

【在 j*****o 的大作中提到】
: 好像是光标类型不对。 :)
j*****o
发帖数: 320
4
这样行了,但是那位能不能点解?
SSS="select * from clients where name='"+Request("name")+"'"
myRecordset.open SSS,myConnection,1,3

【在 j*****o 的大作中提到】
: 但是,在Recordset被打开前加入:
: myRecordset.CursorType = adOpenStatic
: 还是不行呀。 困惑,困惑。

1 (共1页)
进入BuildingWeb版参与讨论
相关主题
[转载] ASP.NET问题请教-如何生成IMAGE MAP真心求教
HTML问题2请问一个数据库 连接的问题。
请问 Javascript + ASP + ADO ?求教关于ASP中的数据库连接问题
中文css教程[转载] how to link to remote access database?
ASP古怪问题about project 1
一个访问权限问题。java <-> cgi/perl 急问
Pull down menu and ASPpost problem
How to change pages in ASP message board[转载] SSH与MySQL冲突?
相关话题的讨论汇总
话题: name话题: request话题: 问题