CraZySacX / node-jdbc

JDBC Wrapper for node.js
140 stars 107 forks source link

add getColumnName method to ResultSetMetaData class #203

Closed andrkosh closed 4 years ago

andrkosh commented 4 years ago

Added getColumnName method to ResultSetMetaData class

Get the designated column's name. Parameters: column - the first column is 1, the second is 2, ... Returns: column name

https://docs.oracle.com/javase/8/docs/api/java/sql/ResultSetMetaData.html#getColumnName-int-