您现在的位置是:首页 > ThinkPHP

李清波 2015-11-04 ThinkPHP 1561 复制当前网址

ThinkPHP跨数据库连接

  我们知道在使用thinkphp框架开发的过程中,往往会遇到一个项目需要了解不同的数据库,而现在thinkphp目前配置一般都是单数据库配置,下面我们就来说一下如何使用thinkphp夸数据库操作。


UserModel.class.php

1.同一数据库服务器上不同的数据库表前缀不同

class UserModel extends Model{
  protected $dbName='liqingbo_cn';
  protected $tablePrefix = 'lqb_';
}

  

2.同一数据库服务器上不同的数据库特定的某一个表

  

class UserModel extends Model{
  protected $trueTableName='liqingbo_cn.user';
}

  

不同数据库服务器上的数据库,表前缀不同

  

class UserModel extends Model{
  protected 
$connection="mysql://root:netroby@xx.xx.xx.xx:3306/liqingbo_cn";
  protected $tablePrefix = 'lqb_';
}

  

不同数据库服务器上的数据库特定的表

  

class UserModel extends Model{
  protected 
$connection="mysql://root:netroby@xx.xx.xx.xx:3306/liqingbo_cn";
  protected $trueTableName='liqingbo_cn';
 }


文章来源:https://liqingbo.com/blog-1023.html

评论