Source code for pystratum_mssql.backend.MsSqlRoutineWrapperGeneratorWorker

from configparser import ConfigParser
from typing import Any, Dict

from pystratum_backend.StratumStyle import StratumStyle
from pystratum_common.backend.CommonRoutineWrapperGeneratorWorker import CommonRoutineWrapperGeneratorWorker

from pystratum_mssql.backend.MsSqlWorker import MsSqlWorker
from pystratum_mssql.wrapper import create_routine_wrapper


[docs]class MsSqlRoutineWrapperGeneratorWorker(MsSqlWorker, CommonRoutineWrapperGeneratorWorker): """ Class for generating a class with wrapper methods for calling stored routines in a SQL Server database. """ # ------------------------------------------------------------------------------------------------------------------ def __init__(self, io: StratumStyle, config: ConfigParser): """ Object constructor. :param pystratum.style.PyStratumStyle.PyStratumStyle io: The output decorator. """ MsSqlWorker.__init__(self, io, config) CommonRoutineWrapperGeneratorWorker.__init__(self, io, config) # ------------------------------------------------------------------------------------------------------------------ def _write_routine_function(self, routine: Dict[str, Any]) -> None: """ Generates a complete wrapper method for a stored routine. :param dict routine: The metadata of the stored routine. """ wrapper = create_routine_wrapper(routine, self._lob_as_string_flag) self._code += wrapper.write_routine_method(routine)
# ----------------------------------------------------------------------------------------------------------------------