20 public static function getInstance($sConfig){
21 return self::_getInstance(__CLASS__,$sConfig);
24 public function getListColumn($sTable){
25 $pRs=$this->query(sgbd_syntax_mssql::getListColumn($sTable));
32 while($tRow=$pRs->fetch(PDO::FETCH_NUM)){
37 public function getListTable(){
38 $pRs=$this->query(sgbd_syntax_mssql::getListTable());
45 while($tRow=$pRs->fetch(PDO::FETCH_NUM)){
51 protected function connect(){
52 if(empty($this->_pDb)){
54 $this->_tConfig[$this->_sConfig.
'.dsn'],
55 $this->_tConfig[$this->_sConfig.
'.username'],
56 $this->_tConfig[$this->_sConfig.
'.password']
61 public function getLastInsertId(){
62 $pRs=$this->query(sgbd_syntax_mssql::getLastInsertId());
67 $tRow=$pRs->fetch(PDO::FETCH_NUM);
71 public function getWhereAll(){