rs.getstring的方法GetString的作用是:以字符串的形式返回指定的記錄集。可以使用這個方法向ASP文件中添加HTML表格。
getstring 方法語法
Set str=objRecordset.GetString(format,n,coldel,rowdel,nullexpr)
Parameter參數 |
Description描述 |
format
Optional. A
StringFormatEnum 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/2頁
12下一頁閱讀全文