Skip to content
This repository has been archived by the owner on Jan 17, 2023. It is now read-only.

Latest commit

 

History

History
14 lines (10 loc) · 280 Bytes

README.md

File metadata and controls

14 lines (10 loc) · 280 Bytes

oradb

Simple python class to help abstract db operations and improve portablity of code

Usage example

import oradb

db_conn = oradb.Oradb("/path/to/my/config_file.cfg")

sql_results = db_conn.execute('SELECT * FROM TEST')

for row in sql_results:
  print(row)