Oracle和C#
求C#连接Oracle的数据库连接程序或连接语句(Oracle数据库在服务器上)本人之熟悉C#和SQL得数据库连接 ,希望哪位仁兄支持一下,先谢过拉!

This one's from Microsoft, the following are from Oracle
This one works only with Oracle 8i release 3 or later
This one works only with Oracle 8i release 3 or later
C#:
using System.Data.OracleClient;
OracleConnection oOracleConn = new OracleConnection();
oOracleConn.ConnectionString = "my connectionstring";
oOracleConn.Open();
VB.NET:
Imports System.Data.OracleClient
Dim oOracleConn As OracleConnection = New OracleConnection()
oOracleConn.ConnectionString = "my connectionstring"
oOracleConn.Open()
Missing the System.Data.OracleClient namespace? Download .NET Managed Provider for Oracle >>
Great article! "Features of Oracle Data Provider for .NET" by Rama Mohan G. at C# Corner
Read more at Core Lab and the product page.
Want to learn data shaping? Check out 4GuyfFromRolla's great article about Data Shaping >>