当前位置: 移动技术网 > IT编程>开发语言>Asp > asp ADO GetString函数与用GetString来提高ASP的速度第1/2页

asp ADO GetString函数与用GetString来提高ASP的速度第1/2页

2017年12月12日  | 移动技术网IT编程  | 我要评论
rs.getstring的方法getstring的作用是:以字符串的形式返回指定的记录集。可以使用这个方法向asp文件中添加html表格。
getstring 方法语法
set str=objrecordset.getstring(format,n,coldel,rowdel,nullexpr) 
parameter参数 description描述
format optional. a value that specifies the format when retrieving a recordset as a string
可选参数。指定一个
n

optional. the number of rows to be converted in the recordset
recordsetstringformatenum值。它是用于指定提取记录集的格式

coldel optional. if format is set to adclipstring it is a column delimiter. otherwise it is the tab character
可选参数。如果format[格式]值设置为adclipstring,那么它就是一个列界定符;除此之外,它便是一个tab[制表符]
rowdel optional. if format is set to adclipstring it is a row delimiter. otherwise it is the carriage return character
可选参数。可选参数。如果format[格式]值设置为adclipstring,那么它就是一个行界定符;除此之外,它便是一个carriage return [回车符]
nullexpr optional. if format is set to adclipstring it is an expression used instead of a null value. otherwise it is an empty string
可选参数。可选参数。如果format[格式]值设置为adclipstring,那么它就是一个用于替代空值的表达式;除此之外,它便是一个空字符
案例
to create an html table with data from a recordset, we only need to use three of the parameters above:
我们只要通过上述三个参数中的一个就可以创建html格式的记录集数据表:

coldel - the html to use as a column-separator 
coldel – 使用html格式作为列分隔符 
rowdel - the html to use as a row-separator 
rowdel – 使用html格式行分隔符 
nullexpr - the html to use if a column is null 
nullexpr – 如果列为空,则使用html 
note: the getstring() method is an ado 2.0 feature.
在下面的案例中,我们将使用getstring()方法将记录集以一个字符串的形式保留:

复制代码 代码如下:

<html> 
<body><% 
set conn=server.createobject("adodb.connection") 
conn.provider="microsoft.jet.oledb.4.0" 
conn.open "c:/webdata/northwind.mdb"set rs = server.createobject("adodb.recordset") 
rs.open "select companyname, contactname from customers", connstr=rs.getstring(,,"</td><td>","</td></tr><tr><td>"," ") 
%><table border="1" width="100%"> 
  <tr> 
    <td><%response.write(str)%></td> 
  </tr> 
</table><% 
rs.close 
conn.close 
set rs = nothingset conn = nothing%></body> 
</html>  

constant
常量
value
description
描述
adclipstring 2 delimits rows by the rowdel parameter, columns by the coldel parameter, and null values by the nullexpr parameter
指定rowdel参数对行(记录)进行界定;通过coldel参数对列(字段)进行界定,通过nullexpr参数对空值进行界定
1

如对本文有疑问, 点击进行留言回复!!

相关文章:

验证码:
移动技术网