摘要:
暂时记录三种工作中用到的数据库的连接方式,以后有需要再添加 1、Oracle & Mysql 驱动 <!-- oracle --><dependency> <groupId>com.oracle</groupId> <artifactId>ojdbc6</artifactId> <version>1 阅读全文
摘要:
--创建跨库连接 create public database link 【连接别名】 connect to 【账号】 identified by 【密码】 using '【数据库URL】'; --删除连接 drop public database link 【连接别名】 ; --使用连接 sele 阅读全文