You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
251 B

<?php
namespace PHPEMS;
//本类主要用于生成各种SQL语句
class pdosql
{
public $tablepre = DTH;
private $_mostlimits = 512;
private $db;
public function _init()
{
$pdo = \PHPEMS\ginkgo::make('pepdo');
$this->setDb($pdo);