Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the standard Python module for SQL queries?

Tags:

python

sql

oracle

I am wondering what is the standard Python module for SQL queries?

I am writing queries for an Oracle database in particular. I am looking to write quick, easy, and direct queries, in the context of both scripts and small programs.

like image 601
ktm5124 Avatar asked Apr 21 '11 19:04

ktm5124


1 Answers

Each SQL database has their own module which implements DB-API 2.0. Oracle uses cx_Oracle.

like image 82
Ignacio Vazquez-Abrams Avatar answered Oct 20 '22 23:10

Ignacio Vazquez-Abrams