asp串連mysql資料庫詳細實現代碼

來源:互聯網
上載者:User

想要asp能串連mysql資料庫需要安裝MySQL ODBC 3.51 驅動 http://www.jb51.net/softs/19910.html
我們先看下面這段代碼

複製代碼 代碼如下:set conn = server.createobject("adodb.connection")
Conn.Open "DRIVER={MySQL ODBC 3.51 Driver};SERVER=127.0.0.1;DATABASE=Shops;USER=root;PASSWORD=xxx;"

上面這代碼是核心部分了。

SERVER 串連伺服器如127.0.0.1
DATABASE 要選擇的資料庫 shops
USER 伺服器登入使用者名稱
PASSWORD 伺服器登入密碼

好了下面來看執行個體 複製代碼 代碼如下:<%
'測試讀取MySql資料庫的內容
strconnection="driver={mysql odbc 3.51 driver};database=weste_net;server=localhost;uid=root;password="
'無需配置dsn
set adodataconn = server.createobject("adodb.connection")
adodataconn.open strconnection
strquery = "select * from News"
set rs = adodataconn.execute(strquery)
if not rs.bof then
%>
<table>
<tr>
<td<b>序號</b></td>
<td><b>標題</b></td>
</tr>
<%
do while not rs.eof
%>
<tr>
<td><%=rs("News_id")%></td>
<td><%=rs("News_Title")%></td>
</tr>
<%
rs.movenext
loop
%>
</table>
<%
else
response.write("無資料.")
end if
rs.close
adodataconn.close
set adodataconn = nothing
set rsemaildata = nothing
%>


上面我沒設定資料庫編碼如果有中文亂碼可以嘗試

'設定用戶端字元編碼 複製代碼 代碼如下:conn.execute("set names '" & myChareSet & "'")

來解決
如果要使用3306之外的連接埠的話我們就需要安裝Mysql 的ODBC資料庫驅動,安裝之後

複製代碼 代碼如下:Conn.Open "DRIVER={MySQL ODBC 3.51 Driver};SERVER=127.0.0.1;PORT=3333;DATABASE=Shops;USER=root;PASSWORD=xxx;"

是沒有問題的。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.