3
A
回答
4
使用ODP .NET ADO .NET Provider。你可以看到一個如何使用它的例子here。
從例如複製
using System;
using System.Data;
using Oracle.DataAccess.Client;
...
// Create the connection object
OracleConnection con = new OracleConnection();
// Specify the connect string
// NOTE: Modify User Id, Password, Data Source as per your database set up
con.ConnectionString = "User Id=userid;Password=password;Data Source=dbinstance;";
try
{
// Open the connection
con.Open();
Console.WriteLine("Connection to Oracle database established!");
Console.WriteLine(" ");
}
catch (Exception ex)
{
Console.WriteLine(ex.Message);
}
string cmdQuery = "SELECT empno, ename FROM emptab";
// Create the OracleCommand object
OracleCommand cmd = new OracleCommand(cmdQuery);
cmd.Connection = con;
cmd.CommandType = CommandType.Text;
try
{
// Execute command, create OracleDataReader object
OracleDataReader reader = cmd.ExecuteReader();
while (reader.Read())
{
// Output Employee Name and Number
Console.WriteLine("Employee Number: " +
reader.GetDecimal(0) +
" , " +
"Employee Name : " +
reader.GetString(1));
}
}
catch (Exception ex)
{
Console.WriteLine(ex.Message);
}
finally
{
// Dispose OracleCommand object
cmd.Dispose();
// Close and Dispose OracleConnection object
con.Close();
con.Dispose();
}
相關問題
- 1. 無法連接到Oracle Express Edition
- 2. 嘗試使用OracleConnection連接到使用C#的Oracle Express 10時出錯
- 3. 從Delphi XE連接TFS 2010
- 4. 連接php和oracle 11gr2 express
- 5. 無法連接的Oracle 10g XE到Eclipse
- 6. java.lang.ArrayIndexOutOfBoundsException:在連接到Oracle 10g XE時
- 7. 在Eclipse中使用JDBC連接到Oracle XE與myBatis使用JDBC
- 8. 使用ODBC連接到Teradata的Oracle XE數據庫
- 9. 如何將Visual Studio 2010 Express C#連接到SQL Server Express
- 10. 使用ASP.NET將錯誤連接到遠程Oracle XE數據庫
- 11. 到Oracle 10 XE
- 12. Visio 2010正向工程到Oracle 10g xe
- 13. 應該使用哪種SQL Server Express,IBM DB2 Express,Oracle XE?
- 14. 使用Visual C#express連接到SQL Server
- 15. 無法使用ODBC連接到Oracle 10g Express Edition
- 16. SQL Server 2012 Express連接到MS Access 2010
- 17. 使用Express連接到MongoDB
- 18. 連接到在Docker上運行的Oracle XE
- 19. Oracle 10g Express .NET連接器
- 20. 使用C++連接到oracle數據庫
- 21. 如何使用Visual Studio 2010 Express連接到SqlExpress for Entity Framework?
- 22. 連接的Oracle 10g Express Edition的和Java
- 23. 得到錯誤,同時連接到Oracle XE與NetBeans IDE
- 24. 如何使用java代碼登錄Oracle 11g中的'xe'連接?
- 25. 無法連接到Linux中的Oracle 11g XE Apex Web界面Mint
- 26. 將Visual Studio 2010連接到Oracle
- 27. SharePoint 2010連接到Oracle數據庫
- 28. 從Visual Studio 2010連接到Oracle
- 29. Oracle Express與2個用戶的連接
- 30. SSIS - 在Oracle Express Edition中使用Attunity連接器