From e47bae33a7dbca478f619d2369d6c9913195b1d7 Mon Sep 17 00:00:00 2001 From: Yuval Adam Date: Sat, 9 Oct 2010 13:27:40 +0200 Subject: initial cx_Oracle connection up and running --- dbconfig.py | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 dbconfig.py (limited to 'dbconfig.py') diff --git a/dbconfig.py b/dbconfig.py new file mode 100644 index 0000000..0dfaccb --- /dev/null +++ b/dbconfig.py @@ -0,0 +1,11 @@ +# databse hostname or IP +HOST = '127.0.0.1' + +# database name (instance id), use XE for express edition +SID = 'XE' + +# databse username +USER = 'user' + +# database password +PASS = 'pass' \ No newline at end of file -- cgit v1.3.1