Prado\Data\SqlMap\TSqlMapConfig::getClient PHP Method

getClient() public method

Initialize the sqlmap if necessary, returns the TSqlMapGateway instance.
public getClient ( ) : TSqlMapGateway
return TSqlMapGateway SqlMap gateway instance.
    public function getClient()
    {
        if ($this->_sqlmap === null) {
            $this->_sqlmap = $this->createSqlMapGateway();
        }
        return $this->_sqlmap;
    }