Document and JDBC
I'd like to create a document from a JDBC column, but, at first glance, Document seems to be way over featured for that and I was wondering if there is an easier way to bind a JTextField to a JDBC column. I know I could populate the fields from the RowSet and update the RowSet from the fields using getText and setText and I will do that if it comes down to it, but that, to me, seems like a very inelegent way of doing it. Using Document seems much cleaner and I'd rather do it that way.
If there isn't an easier way, if someone could point me to some tutorials on subclassing the AbstractDocument (or any of the Document classes for that matter) class, I'd appreciate it. All I can seem to find are classes that allow you to restrict what kind of input is allowed.

