Skip to content

Commit

Permalink
remove line
Browse files Browse the repository at this point in the history
  • Loading branch information
donsez authored Nov 8, 2024
1 parent 835ec7b commit 43d3620
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions jdbc-postgresql/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -126,8 +126,7 @@ ResultSetMetaData metaData = rs.getMetaData();
Integer columnCount = metaData.getColumnCount();
String tableName = getTableName(columnNumber); //
String columnName = getColumnName(columnNumber); // to get the name of the column
String columnLabel = getColumnLabel(int columnNumber); // to get the name of the column
String tableName = getColumnLabel(int columnNumber); // to access the label of the column, which is specified after AS in the SQL query
String columnLabel = getColumnLabel(int columnNumber); // to access the label of the column, which is specified after AS in the SQL query

...

Expand Down

0 comments on commit 43d3620

Please sign in to comment.