码迷,mamicode.com
首页 > 数据库 > 详细

yii2 sqlserver 2008 连接

时间:2017-07-24 20:24:18      阅读:250      评论:0      收藏:0      [点我收藏+]

标签:cti   问题   schema   服务   from   aes   数据库   server   facet   

参考文章

http://www.cnblogs.com/facetwitter/p/6444706.html?utm_source=itdadao&utm_medium=referral

http://www.cnblogs.com/jiechn/p/4841865.html

 

1.必需安装freetds

配置

[myconfig]
host = 192.168.2.22
port = 1433
tds version = 8.0
client chaeset = UTF-8

测试 :/usr/local/freetds/bin/tsql -H 数据库服务器IP  -p 端口号 -U 用户名 -P 密码(用这个我是测试连接不上)

我是这样测试的:  Cd 到  /usr/local/freetds/bin/tsql

  tsql -S myconfig -U name    -P password  能连接上   ,简单的 命令 use database;top 10 * from table;

3接下来添加php的mssq和pdo_dblib扩展

 我的环境是nginx 的所以重启完nginx 重启 php-fpm

4.最后数据库配置

‘class‘ => ‘yii\db\Connection‘,
    ‘dsn‘ => ‘dblib:host=myconfig;dbname=dbname‘,//这里我用ip他不行,用这个名称就可以,我也不知道 ,这个要是不行,试下下面这个

   //‘dsn‘ => ‘sqlsrv:Server=myconfig;Database=dbname‘,
    ‘username‘ => ‘‘,
    ‘password‘=>‘‘,
    //‘charset‘=>‘utf8‘,
    //‘persistent‘=> false,
    ‘enableSchemaCache‘ => true,
    // Duration of schema cache.
    ‘schemaCacheDuration‘ => 300,
    // Name of the cache component used. Default is ‘cache‘.
    ‘schemaCache‘ => ‘cache‘,

如果报找不到驱动的就先确保装了上面的扩展和模块,重启nginx,php-fpm,再就是dsn的配置问题了

 

yii2 sqlserver 2008 连接

标签:cti   问题   schema   服务   from   aes   数据库   server   facet   

原文地址:http://www.cnblogs.com/allen817/p/7230708.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!