Source code for pystratum_pgsql.wrapper.PgSqlSingleton1Wrapper

from typing import Any, Dict

from pystratum_common.wrapper.Singleton1Wrapper import Singleton1Wrapper

from pystratum_pgsql.wrapper.PgSqlWrapper import PgSqlWrapper


[docs]class PgSqlSingleton1Wrapper(PgSqlWrapper, Singleton1Wrapper): """ Wrapper method generator for stored procedures that are selecting 1 row with one column only. """ # ------------------------------------------------------------------------------------------------------------------ def _write_result_handler(self, routine: Dict[str, Any]) -> None: """ Generates code of the return statement of the wrapper method for invoking a stored routine. :param dict routine: Metadata of the stored routine. """ self._write_line( 'return self.execute_sp_singleton1({0!s})'.format(str(self._generate_command(routine))))
# ----------------------------------------------------------------------------------------------------------------------