摘要: 访问 Oracle 数据库的步骤1.在 Oracle 中,创建一个名为 TestTable 的表,如下所示:Create Table TestTable (c1 char(5)); 2.将数据插入到 TestTable 中,如下所示:Insert into TestTable c1 values('Test1');Insert into TestTable c1 values('Test2');Insert into TestTable c1 values('Test3'); 3.启动 Visual Studio .N... 阅读全文
posted @ 2014-04-10 15:13 如.若 阅读(1481) 评论(0) 推荐(0) 编辑