oracle:出现下述错误,无法连接用户. ORA-01034: ORACLE not available ORA-27101: shared memory realm does not exist IBM AIX RISC System/6000 Error: 2: No such file or directory 解决方案:重启数据库 关闭数据库: 1.在aix上按照操作手册进行数据库的关闭.(或者使用sqlplus进行数据库关闭)具体操作如下: 操作手册关闭:打开窗口:#hostname…
public class DBCon { // 数据库驱动对象 public static final String DRIVER = "oracle.jdbc.driver.OracleDriver"; // 数据库连接地址(数据库名) public static final String URL = "jdbc:oracle:thin:@localhost:1521:orcl"; // 登陆名 public static final String USER = …