Retrieves all values in the specified column, and returns them as a String array. The column may be specified by either its ID or title. @webref table:method @webBrief Retrieves all values in the specified column @param columnName title of the column to search @see Table#getInt(int, int) @s
(String columnName)
| 3623 | * @see Table#setString(int, int, String) |
| 3624 | */ |
| 3625 | public String[] getStringColumn(String columnName) { |
| 3626 | int col = getColumnIndex(columnName); |
| 3627 | return (col == -1) ? null : getStringColumn(col); |
| 3628 | } |
| 3629 | |
| 3630 | |
| 3631 | /** |
no test coverage detected