Log of /branches/2.7.x/schmitzm-db/src
Directory Listing
Revision
2049 -
Directory Listing
Modified
Thu Jun 7 10:38:41 2012 UTC
(12 years, 8 months ago)
by
keeb
new branch 2.7
Revision
1832 -
Directory Listing
Modified
Sun Jan 22 00:37:51 2012 UTC
(13 years, 1 month ago)
by
alfonx
Original Path:
trunk/schmitzm-db/src
/**
* Liefdert eine Liste alle Spaltennamen in einer Tabelle.
*
* ACHTUNG! Diese Methode schaut gerade nur auf den Tabellennamen! Das SChema wird ignoriert. Es gibt also probleme,
* wenn der selbe Tabellenname noch in einem anderen Schema existiert.
*
* @param tableName
* darf auch schema-informationen enthalten.
* @throws SQLException
*/
public List<String> listColumnsInTable(Connection c, String tableName) throws SQLException {
Revision
1831 -
Directory Listing
Modified
Sat Jan 21 20:19:22 2012 UTC
(13 years, 1 month ago)
by
alfonx
Original Path:
trunk/schmitzm-db/src
PGUtil, neue Methode:
public static boolean existsTable(Connection c, String tableName) throws SQLException
/**
* Existiert ein relationsname als Tabelle?
*
* @param tableName
* Darf eine Schemaangabe mit . Trenner enthalten.
* @throws SQLException
*/