随笔分类 - oracle
摘要:1、获取表: select table_name from user_tables; //当前用户拥有的表 select table_name from all_tables; //所有用户的表 select table_name from dba_tables; //包括系统表 select ta
阅读全文
摘要:1.一般的连接方法 即通过cx_Oracle包来实现 安装方法 pip install cx_Oracle pyhton 连接代码 import cx_Oracle print("cx_Oracle.version:", cx_Oracle.version) host = "数据库ip" port
阅读全文