Re: TableName
От | dmp |
---|---|
Тема | Re: TableName |
Дата | |
Msg-id | 508EAD22.3030602@ttc-cmc.net обсуждение исходный текст |
Ответ на | TableName (Goran Popov <goran.popov@prokomsoft.rs>) |
Список | pgsql-jdbc |
Looks like perhasp because it is not applicable for a resultSet. As per the the Java™ Platform, Standard Edition 6 API Specification. Interface ResultSetMetaData String getTableName(int column) throws SQLException Gets the designated column's table name. Parameters: column - the first column is 1, the second is 2, ... Returns: table name or "" if not applicable Throws: SQLException - if a database access error occurs Consider SELECT(1*2) resultSet. Does that have a table name? danap. Goran Popov wrote: > AbstractJdbc2ResultSetMetaData.java > > > Whay this is default > public String getTableName(int column) throws SQLException > { > return ""; > } > > and not this > public String getTableName(int column) throws SQLException > { > return getBaseTableName(column); > }
В списке pgsql-jdbc по дате отправления: