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

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

License

Notifications You must be signed in to change notification settings

ndpete/oradb

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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)

About

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

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages