Subject Re: Updateable ResultSets - any progress?
Author Roman Rokytskyy
> Couldn't you use the system tables to pull the pk for the table?
>
> I know the .net driver does this with it's command builder.

Even better, you can do this using DatabaseMetaData class, see
getPrimaryKeys(String, String, String) method. But doing this for each
table would significantly decrease the performance.

Roman