摘要: 最近的项目使用Oracle DB。在.NET里可以使用Oracle Client,来对Oracle DB下SQL指令。写了下面的程序代码,用来取得User数据表里的User数据。using (OracleConnection connection = new OracleConnection(connectionString)){ connection.Open(); using (OracleCommand command = new OracleCommand()) { command.Connection = connection; comm... 阅读全文
posted @ 2012-07-13 13:28 Clark159 阅读(537) 评论(0) 推荐(0) 编辑