asp中command的在单条记录时,有些字段显示为空的问题
程序员文章站
2022-03-25 21:00:38
edit_rs_cmd.commandtext = "select * from dbo.usertable w...
edit_rs_cmd.commandtext = "select * from dbo.usertable where id = ?"
这时候要把不能显示的字段,在放到sql中,显示出来
edit_rs_cmd.commandtext = "select *,[不能显示的字段],[不能显示的字段], from dbo.usertable where id = ?"
后来又找到的方法
edit_rs.fields.item("opentime").value
把
edit_rs.fields.item(11).value'time所在的顺序
但是这些做起来,都很复杂 在dw给好式之后,可以用下面的方法
set edit_rs_cmd = server.createobject ("adodb.command")
edit_rs_cmd.activeconnection = mm_conn_string
edit_rs_cmd.prepared = true
edit_rs_cmd.commandtext = "select * from dbo.usertable where id = ?"
edit_rs_cmd.parameters.append edit_rs_cmd.createparameter("param1", 5, 1, -1, edit_rs__mmcolparam) ' addoubleset edit_rs = server.createobject("adodb.recordset")
edit_rs.open edit_rs_cmd ,,1,1
原来的方法
set edit_rs_cmd = server.createobject ("adodb.command")
edit_rs_cmd.activeconnection = mm_conn_string
edit_rs_cmd.prepared = true
edit_rs_cmd.commandtext = "select *,[trytime],[opentime],[endtime],address,scale,content from dbo.usertable where id = ?"
edit_rs_cmd.parameters.append edit_rs_cmd.createparameter("param1", 5, 1, -1, edit_rs__mmcolparam) ' addouble
set edit_rs = edit_rs_cmd.execute
下面的是废话,加进去,没有一个能用,或是说command 但是属性添加错误!
引用
cursortype参数值
参数 值 说明
adopenforwardonly 0 向前指针,默认值。只能用movenext方法或getrows方法向前单向移动指针,所耗系统资源最少,执行速度也最快,但很多属性和方法将不能用
adopenkeyset 1 键盘指针,记录集中可以前后移动。某一用户修改数据后,其他用户可以立即显示,但禁止查看其他用户添加和删除的记录
adopendynamic 2 动态指针,记录集中可以前后移动。所有修改会立即在其他客户端显示,功能强大,但所耗系统资源也多
adopenstatic 3 静态指针,记录集中可以前后移动。所有修改不会在其他客户端显示
这时候要把不能显示的字段,在放到sql中,显示出来
edit_rs_cmd.commandtext = "select *,[不能显示的字段],[不能显示的字段], from dbo.usertable where id = ?"
后来又找到的方法
edit_rs.fields.item("opentime").value
把
edit_rs.fields.item(11).value'time所在的顺序
但是这些做起来,都很复杂 在dw给好式之后,可以用下面的方法
set edit_rs_cmd = server.createobject ("adodb.command")
edit_rs_cmd.activeconnection = mm_conn_string
edit_rs_cmd.prepared = true
edit_rs_cmd.commandtext = "select * from dbo.usertable where id = ?"
edit_rs_cmd.parameters.append edit_rs_cmd.createparameter("param1", 5, 1, -1, edit_rs__mmcolparam) ' addoubleset edit_rs = server.createobject("adodb.recordset")
edit_rs.open edit_rs_cmd ,,1,1
原来的方法
set edit_rs_cmd = server.createobject ("adodb.command")
edit_rs_cmd.activeconnection = mm_conn_string
edit_rs_cmd.prepared = true
edit_rs_cmd.commandtext = "select *,[trytime],[opentime],[endtime],address,scale,content from dbo.usertable where id = ?"
edit_rs_cmd.parameters.append edit_rs_cmd.createparameter("param1", 5, 1, -1, edit_rs__mmcolparam) ' addouble
set edit_rs = edit_rs_cmd.execute
下面的是废话,加进去,没有一个能用,或是说command 但是属性添加错误!
引用
cursortype参数值
参数 值 说明
adopenforwardonly 0 向前指针,默认值。只能用movenext方法或getrows方法向前单向移动指针,所耗系统资源最少,执行速度也最快,但很多属性和方法将不能用
adopenkeyset 1 键盘指针,记录集中可以前后移动。某一用户修改数据后,其他用户可以立即显示,但禁止查看其他用户添加和删除的记录
adopendynamic 2 动态指针,记录集中可以前后移动。所有修改会立即在其他客户端显示,功能强大,但所耗系统资源也多
adopenstatic 3 静态指针,记录集中可以前后移动。所有修改不会在其他客户端显示
下一篇: ASP为字符串中的网址自动加上链接