What is the difference between ResultSetMetaData.getColumnLabel and ResultSetMetaData.getColumnName?
Label: Gets the designated column's suggested title for use in printouts and displays.
Name: Get the designated column's name.
Does anyone know how Label is determined?
String getColumnLabel(int column) throws SQLException;
If a SQL AS
is not specified, the value returned from getColumnLabel
will be the same as the value returned by the getColumnName
method.
Example:
select id as user_no from users
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With