本文共 2682 字,大约阅读时间需要 8 分钟。
public void FullFlow() { string dbConnectiong = ""; IDataConnection dataConnection = new OleDbConnection(dbConnectiong); IDataAccessor dataAccessor = dataConnection.CreateDataAccessor(); dataConnection.Open(); try { //Do ... } finally { dataConnection.Close(); } }
static void Main(string[] args) { System.Console.WriteLine("AgileEAS.NET平台UDA组件使用例子,按任务键开始..."); System.Console.Read(); System.Console.WriteLine("使用IDataReader的例子:"); new UdaQuery().DemeGetDataReader(); System.Console.WriteLine("按任务键开始..."); System.Console.Read(); System.Console.WriteLine("使用IDataSet的例子:"); new UdaQuery().DemeGetDataSet(); System.Console.WriteLine("按任务键开始..."); System.Console.Read(); System.Console.WriteLine("使用IDataTable的例子:"); new UdaQuery().DemeGetDataTable(); System.Console.WriteLine("按任务键开始..."); System.Console.Read(); System.Console.WriteLine("使用Dictionary的例子:"); new UdaQuery().DemeGetDictionary(); System.Console.WriteLine("按任务键开始..."); System.Console.Read(); System.Console.WriteLine("使用List的例子:"); new UdaQuery().DemeGetList(); System.Console.WriteLine("按任务键开始..."); System.Console.Read(); System.Console.WriteLine("使用Scalar的例子:"); new UdaQuery().DemeGetScalar(); System.Console.WriteLine("按任务键开始..."); System.Console.Read(); System.Console.WriteLine("数据更新的例子:"); new UdaExecute().DemeExecute(); System.Console.WriteLine("按任务键结束。"); System.Console.Read(); }
转载地址:http://gepul.baihongyu.com/