Menu
×
   ❮     
HTML CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C C++ C# BOOTSTRAP REACT MYSQL JQUERY EXCEL XML DJANGO NUMPY PANDAS NODEJS R TYPESCRIPT ANGULAR GIT POSTGRESQL MONGODB ASP AI GO KOTLIN SASS VUE DSA GEN AI SCIPY AWS CYBERSECURITY DATA SCIENCE
     ❯   

ADO GetString 方法


❮ 记录集对象完整参考

GetString 方法将指定的记录集作为字符串返回。此方法可用于在 ASP 文件中填充 HTML 表格。

语法

Set str=objRecordset.GetString(format,n,coldel,rowdel,nullexpr)

参数 描述
format 可选。一个 StringFormatEnum 值,指定将记录集作为字符串检索时的格式
n

可选。要转换的记录集中的行数

coldel 可选。如果 format 设置为 adClipString,则它是列分隔符。否则它是制表符
rowdel 可选。如果 format 设置为 adClipString,则它是行分隔符。否则它是回车符
nullexpr 可选。如果 format 设置为 adClipString,则它是一个表达式,用于替换空值。否则它是空字符串

示例

要使用记录集中的数据创建 HTML 表格,我们只需要使用上面三个参数中的三个

  • coldel - 用作列分隔符的 HTML
  • rowdel - 用作行分隔符的 HTML
  • NullExpr - 如果列为 NULL,则使用 HTML

注意:GetString() 方法是 ADO 2.0 功能。您可以在 http://www.microsoft.com/data/download.htm 下载 ADO 2.0。

示例

在以下示例中,我们将使用 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", conn

str=rs.GetString(,,"</td><td>","</td></tr><tr><td>","&nbsp;")
%>

<table border="1" width="100%">
  <tr>
    <td><%Response.Write(str)%></td>
  </tr>
</table>

<%
rs.close
conn.close
set rs = Nothing
set conn = Nothing
%>

</body>
</html>
显示示例 »

StringFormatEnum 值

常量 描述
adClipString 2 用 rowdel 参数分隔行,用 coldel 参数分隔列,用 nullexpr 参数分隔空值

❮ 记录集对象完整参考
×

Contact Sales

If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]

Report Error

If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]

W3Schools is optimized for learning and training. Examples might be simplified to improve reading and learning. Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot warrant full correctness of all content. While using W3Schools, you agree to have read and accepted our terms of use, cookie and privacy policy.

Copyright 1999-2024 by Refsnes Data. All Rights Reserved. W3Schools is Powered by W3.CSS.