数据库连接

时间:2010-06-28 11:27:12

标签: asp.net oracle

如何与asp.net前端的oracle10g快速版后端建立数据库连接?请发送源代码。

1 个答案:

答案 0 :(得分:1)

一旦你downloaded the appropriate driver引用项目中的程序集,就可以对数据库执行SQL查询:

using (var conn = new OracleConnection(ConnectionString))
using (var command = conn.CreateCommand())
{
    conn.Open();
    command.CommandText = "SELECT id FROM foo;";
    using (var reader = command.ExecuteReader())
    {
        while (reader.Read())
        {
            // TODO: exploit the results
        }
    }
}

阅读驱动程序附带的technical articles也可能有用。