• asp 连接 csv,读取 csv 文件


    <%Option Explicit%>
    <html>
    <head>
    <title>ShotDev.Com Tutorial</title>
    </head>
    <body>
    <%
    Dim Conn,objRec,strSQL
    Set Conn = Server.Createobject("ADODB.Connection")
    Conn.Open "Driver={Microsoft Text Driver (*.txt; *.csv)};" & _
    "Dbq=" & Server.MapPath("shotdev/") & ";Extensions=asc,csv,tab,txt;Persist Security Info=False"
    
    strSQL = "SELECT * FROM customer.csv "
    Set objRec = Conn.Execute(strSQL)
    %>
    <table width="600" border="1">
    <tr>
    <th width="91"> <div align="center">CustomerID </div></th>
    <th width="98"> <div align="center">Name </div></th>
    <th width="198"> <div align="center">Email </div></th>
    <th width="97"> <div align="center">CountryCode </div></th>
    <th width="59"> <div align="center">Budget </div></th>
    <th width="71"> <div align="center">Used </div></th>
    </tr>
    <%
    If Not objRec.EOF Then
    objRec.MoveFirst
    While Not objRec.EOF
    %>
    <tr>
    <td><div align="center"><%=objRec.Fields(0).Value%></div></td> <!--objRec.Fields("CustomerID").Value -->
    <td><%=objRec.Fields(1).Value%></td> <!--objRec.Fields("Name").Value -->
    <td><%=objRec.Fields(2).Value%></td> <!--objRec.Fields("Email").Value -->
    <td><div align="center"><%=objRec.Fields(3).Value%></div></td> <!--objRec.Fields("CountryCode").Value -->
    <td align="right"><%=objRec.Fields(4).Value%></td> <!--objRec.Fields("Budget").Value -->
    <td align="right"><%=objRec.Fields(5).Value%></td> <!--objRec.Fields("Used").Value -->
    </tr>
    <%
    objRec.MoveNext
    Wend
    End IF
    %>
    <%
    objRec.Close()
    Conn.Close()
    Set objRec = Nothing
    Set Conn = Nothing
    %>
    </table>
    </body>
    </html>

    来源:http://www.shotdev.com/asp/asp-csv/asp-csv-odbc/

  • 相关阅读:
    SQL server 笔记8
    SQL server 笔记7
    SQL server 笔记6
    SQL server的一些函数即笔记5
    SQL server 练习查询45题(18-45)及笔记4
    SQL server 练习查询45题(1-17)及笔记 3
    SQL server 学习笔记2
    SQL server 学习笔记
    C#复习笔记
    学习递归笔记
  • 原文地址:https://www.cnblogs.com/personnel/p/13631193.html
Copyright © 2020-2023  润新知