C#连接Oracle数据库可以实现许多我们需要的功能,下面介绍的是C#连接Oracle数据库查询数据的方法,如果您对C#连接Oracle数据库方面感兴趣的话,不妨一看. using System; using System.Collections.Generic; using System.ComponentModel using System.Data.OracleClient;;//这行和下一行都要先在引用中填加system.data.oracleclient using System.Da…
1.查询SCOTT表中有多少表,并显示表的一些描述select * from all_tables WHERE owner='SCOTT' ; 2.查询oracle数据库版本select * from v$version; select version from v$instance; select version FROM Product_component_version;…
package sqltest; import java.sql.*; import parameter.BaseCanShu; public class PublicDbOracle { static String id = ""; static int status = 0; static Connection con = null;// 创建一个数据库连接 static PreparedStatement pre = null;// 创建预编译语句对象,一般都是用这个而不用Sta…