You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Sometimes it it useful to get result (from QueryResultRow) column without column name. For example, when function returns single result, and it is not named:
CREATE OR REPLACEFUNCTIONpublic.convert_old_schema_to_new_schema(
IN i_old_schema JSONB
) RETURNS JSONB AS
$$
Currently I believe one has to use raw Java resultSet of QueryResultRow to get column with index 1, balta doesn't support that directly.
Feature
Option (or options) to get QueryResultRow column value without column name, for example by index, or if is has only one column - without anything.
The text was updated successfully, but these errors were encountered:
Background
Sometimes it it useful to get result (from
QueryResultRow
) column without column name. For example, when function returns single result, and it is not named:Currently I believe one has to use raw Java
resultSet
ofQueryResultRow
to get column with index 1, balta doesn't support that directly.Feature
Option (or options) to get
QueryResultRow
column value without column name, for example by index, or if is has only one column - without anything.The text was updated successfully, but these errors were encountered: