This commit is contained in:
thinkphp
2016-07-29 15:07:30 +08:00
2 changed files with 8 additions and 0 deletions

View File

@@ -14,6 +14,7 @@ namespace think;
use think\App;
use think\Collection;
use think\db\Query;
use think\paginator\Collection as PaginatorCollection;
/**
* Class Db

View File

@@ -23,6 +23,13 @@ use think\Exception;
use think\exception\PDOException;
use think\Log;
/**
* Class Connection
* @package think
* @method Query table(string $table) 指定数据表(含前缀)
* @method Query name(string $name) 指定数据表(不含前缀)
*
*/
abstract class Connection
{