你会如何使用OleDbConnection,它比使用.NET提供的框架更好吗?
using (OracleConnection connection = new OracleConnection("Connection String"))
{
using (OracleCommand cmd = new OracleCommand("select * from tbl", connection))
{
connection.Open();
//do database stuff
}
}
这是大多数数据连接的基本构造在这里我使用了预言机您可以将oracle替换为OleDb,Ibm.Iseries,SQL Server.....