Prado\Data\SqlMap\TSqlMapConfig::getClient PHP 메소드

getClient() 공개 메소드

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