Re: DBHandler class for logging?

2009-09-25 Thread Nebur
With a similar requirement, I made a small logging tool (usable as handler) which logs into nearly every DB (including Postgres - thanks to the SQLAlchemy library.) It has BSD license. You may use it (or parts of the code): http://www.reifenberg.de/rrlog/ (It does some more things you may not

Re: DBHandler class for logging?

2009-09-24 Thread kj
In f8a64e65-d13c-410f-abf8-fa5fadcb9...@f10g2000vbf.googlegroups.com Vinay Sajip vinay_sa...@yahoo.co.uk writes: See my answer to a question on Stack Overflow, which has the source code for a simple handler which writes to a database using the Python DB-API 2.0:

Re: DBHandler class for logging?

2009-09-23 Thread Vinay Sajip
See my answer to a question on Stack Overflow, which has the source code for a simple handler which writes to a database using the Python DB-API 2.0: http://stackoverflow.com/questions/935930/creating-a-logging-handler-to-connect-to-oracle/1014450#1014450 Although the question relates to Oracle,

Re: DBHandler class for logging?

2009-09-22 Thread Diez B. Roggisch
kj schrieb: I've come across mentions of a mythical class of logging handlers called DBHandler, but I can't find it anywhere. Could someone please point me in the right direction? (FWIW, I'm looking for ways to log messages to PostgreSQL RDBMS.) I'm not aware such a thing is part of the

Re: DBHandler class for logging?

2009-09-22 Thread kj
In 7hsukcf2tqht...@mid.uni-berlin.de Diez B. Roggisch de...@nospam.web.de writes: kj schrieb: I've come across mentions of a mythical class of logging handlers called DBHandler, but I can't find it anywhere. Could someone please point me in the right direction? (FWIW, I'm looking for

Re: DBHandler class for logging?

2009-09-22 Thread Diez B. Roggisch
kj schrieb: In 7hsukcf2tqht...@mid.uni-berlin.de Diez B. Roggisch de...@nospam.web.de writes: kj schrieb: I've come across mentions of a mythical class of logging handlers called DBHandler, but I can't find it anywhere. Could someone please point me in the right direction? (FWIW, I'm