Asp.Net串連Oracle資料庫的例子

來源:互聯網
上載者:User
asp.net|oracle|資料|資料庫

Asp.Net串連Oracle資料庫的例子


剛接觸asp.net,發現在 .Net Framework 1.1版中,直接就有System.Data.OracleClient類庫,

用於訪問Oracle資料庫,不過我這裡好像還是1.0 版本的,不支援該對象。

這裡是一個通過oledb訪問資料庫的例子,與在asp中的差不多,能夠訪問大多數的資料庫,比如access之類的。


<%@ Page Language="VB" %>

<%@ import Namespace="System.Data" %>

<%@ import Namespace="System.Data.OleDb" %>

<script runat="server">

    Sub Page_Load(Sender As Object, E As EventArgs)

        Dim ConnectionString As String = "Provider=OraOLEDB.Oracle;User ID=tmpuser;Password=rt45ps1w;Data Source=sun450;"
       
 Dim CommandText As String = "Select * From zscruser.sms_tk"

        Dim myConnection As New OleDbConnection(ConnectionString)

        Dim myCommand As New OleDbCommand(CommandText, myConnection)

        Dim myReader as OleDbDataReader

        myConnection.Open()

        myReader=myCommand.ExecuteReader()


        'Way 1 use DataGrid to show the return data
       
 '直接綁定到datagrid控制項
       
 'DataGrid1.DataSource=myReader

        'DataGrid1.DataBind()

 

        '或者像我們在asp中那樣,通過一個迴圈輸出資料,自己格式化外觀


        while myReader.Read()

            Response.Write(myReader("title") +"<br>")
       
 'wend
       
 end while

        myReader.close()

        myConnection.close()


    End Sub

</script>

<html>

<head>

</head>

<body style="FONT-FAMILY: arial">

    <h2>Simple Data Report</h2>

    <hr size="1" />

    <form runat="server">

        <asp:datagrid id="DataGrid1" runat="server" CellSpacing="1" GridLines="None" CellPadding="3" BackColor="White" ForeColor="Black" EnableViewState="False">

            <HeaderStyle font-bold="True" forecolor="white" backcolor="#4A3C8C"></HeaderStyle>

            <ItemStyle backcolor="#DEDFDE"></ItemStyle>

        </asp:datagrid>

    </form>

</body>

</html>



相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.