标题:编程翻译
取消只看楼主
飞翔的鸟123
Rank: 1
等 级:新手上路
帖 子:1
专家分:0
注 册:2016-11-15
结帖率:0
已结贴  问题点数:20 回复次数:0 
编程翻译
OracleConnection myConnection = new OracleConnection(connectionString);//创建新的OracleDataAdapter对象
            OracleCommand myORACCommand = myConnection.CreateCommand();
             = queryString;
            myConnection.Open();
            OracleDataAdapter oraDA = new OracleDataAdapter(myORACCommand);
            DataSet ds = new DataSet();
            oraDA.Fill(ds); myConnection.Close();
            DataTable dtbl = ds.Tables[0];
            this.dataGridView1.DataSource = dtbl;
能注释下吗?
2016-11-16 15:22



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-471202-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.208932 second(s), 8 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved