String getColumnLabel(int column) throws SQLException;
If SQL AS not specified, the value returned from getColumnLabel will be the same as the value returned by getColumnName .
Example:
select id as user_no from users
- getColumnLabel will return 'user_no'
- getColumnName will return 'id'
stacker Nov 24 '10 at 20:30 2010-11-24 20:30
source share