dongmaopiao0901 2013-10-31 08:48
浏览 47
已采纳

Kohana 3.3不使用MySQLi驱动程序

I'm working on a project that uses Kohana 3.3. I've run into a problem where I want to connect to a database. The application is telling me it's using MySQL and it's decrepated.

To solve this I've downloaded a MySQLi driver for Kohana 3.3 and followed the instructions (creating a mysqli folder in the modules folder and adding a new line in bootstrap.php to enable it).

However when I try to perform any database actions it still says it's using MySQL. The error reads: "Database_Exception [ 8192 ]: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead".

The line I'm using to enable the module is 'mysqli' => MODPATH.'mysqli', // MySQLi support for Kohana

The MySQLi driver I'm using is this (links to github).

Can anyone see what's going wrong?

Thanks in advance.

  • 写回答

2条回答 默认 最新

  • dongpo2014 2013-10-31 23:18
    关注

    Just enabling the module isn't enough.

    Since Kohana 3.3 the autoloader is case sensitive, so MODPATH/mysqli/classes/kohana/database/mysqli.php should become MODPATH/mysqli/classes/Kohana/Database/MySQLi.php for example.

    You have to edit your APPPATH/config/database.php and set the driver to 'MySQLi' or set Database::$default to the correct default database instance name. (The one using 'MySQLi' as the driver.)

    And just to be sure, do NOT edit config files outside of APPPATH. Instead, copy the file to APPPATH and edit that file. You generally should not have to edit files outside of APPPATH. Updating modules to work with a new version is allowed of course. But config files outside of APPPATH should serve as examples/blueprints.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 基于卷积神经网络的声纹识别
  • ¥15 Python中的request,如何使用ssr节点,通过代理requests网页。本人在泰国,需要用大陆ip才能玩网页游戏,合法合规。
  • ¥100 为什么这个恒流源电路不能恒流?
  • ¥15 有偿求跨组件数据流路径图
  • ¥15 写一个方法checkPerson,入参实体类Person,出参布尔值
  • ¥15 我想咨询一下路面纹理三维点云数据处理的一些问题,上传的坐标文件里是怎么对无序点进行编号的,以及xy坐标在处理的时候是进行整体模型分片处理的吗
  • ¥15 CSAPPattacklab
  • ¥15 一直显示正在等待HID—ISP
  • ¥15 Python turtle 画图
  • ¥15 stm32开发clion时遇到的编译问题