Q: How Much Does jEdit Rock?
A: Very Much
A: Very Much
Don't use the following idiom:
data = open('foo.txt').read()
...
Instead, do:
f = open('foo.txt')
data = f.read()
f.close()
This is important if you're working with files that jEdit has open, as Jython may still have the file open when you attempt to save it with jEdit. If this happens, you may be unable to save your file in jEdit. I learned this the hard way.
http://www.connectionstrings.com/ is a great reference on DB connection strings.
Another observation, mainly for testing purposes: train rides are a good time for coding -- especially if one has good tunes.
I haven't used it yet, but I'm looking forward to playing with it. It can be found here: http://adodbapi.sourceforge.net/