doutao6653 2016-08-31 04:28
浏览 33

是杂货店对DB2的支持吗?

i have question about grocercrud, does it really support for DB2?

because i had tried and it failed.

this is my connection setup (Codeigniter 3):

$active_group = 'default';
$query_builder = TRUE;

$db['default'] = array(
    'dsn'   => '',
    'hostname' => 'Driver={IBM DB2 ODBC DRIVER - DB2COPY1};Database=SAMPLE;hostname=localhost;port=50000;protocol=TCPIP;" . "boby.wayz; 1q2w3e4r5t;',
    'username' => 'boby.wayz',
    'password' => '1q2w3e4r5t',
    'database' => 'SAMPLE',
    'dbdriver' => 'odbc',
    'dbprefix' => '',
    'pconnect' => FALSE,
    'db_debug' => (ENVIRONMENT !== 'production'),
    'cache_on' => FALSE,
    'cachedir' => '',
    'char_set' => 'utf8',
    'dbcollat' => 'utf8_general_ci',
    'swap_pre' => '',
    'encrypt' => FALSE,
    'compress' => FALSE,
    'stricton' => FALSE,
    'failover' => array(),
    'save_queries' => TRUE
);

and this the error that i've got:

Error Number: S0002

[IBM][CLI Driver][DB2/NT64] SQL0204N "INFORMATION_SCHEMA.TABLES" is an undefined name. SQLSTATE=42704

SELECT table_name FROM information_schema.tables WHERE table_schema = 'public'

Filename: C:/xampp/htdocs/personal/dailywork/system/database/DB_driver.php

Line Number: 691

  • 写回答

1条回答 默认 最新

  • doufen3838 2016-08-31 16:24
    关注

    The website says in known issues that it only supports MySQL with MySQLi.

    DB2 provides a MySQL compatibility mode (but this requires that the database be created after MySQL compatibility mode is already enabled). This would solve the initial problem you're seeing (a database created with MySQL compatibility mode will have the view INFORMATION_SCHEMA.TABLES), but it's not clear whether that will truly solve the problem of getting Grocery CRUD to work with DB2.

    评论

报告相同问题?

悬赏问题

  • ¥60 版本过低apk如何修改可以兼容新的安卓系统
  • ¥25 由IPR导致的DRIVER_POWER_STATE_FAILURE蓝屏
  • ¥50 有数据,怎么建立模型求影响全要素生产率的因素
  • ¥50 有数据,怎么用matlab求全要素生产率
  • ¥15 TI的insta-spin例程
  • ¥15 完成下列问题完成下列问题
  • ¥15 C#算法问题, 不知道怎么处理这个数据的转换
  • ¥15 YoloV5 第三方库的版本对照问题
  • ¥15 请完成下列相关问题!
  • ¥15 drone 推送镜像时候 purge: true 推送完毕后没有删除对应的镜像,手动拷贝到服务器执行结果正确在样才能让指令自动执行成功删除对应镜像,如何解决?