DBD :: MySQL:LongReadLen和LongTruncOk

时间:2013-01-23 15:21:27

标签: mysql perl dbi truncate

使用DBD::mysql作为Perl5数据库接口(DBI)的驱动程序时,是否具有属性LongReadLenLongTruncOk?我没有在DBD::mysql文档中找到这些属性,但我在互联网上找到了一些使用DBD::mysql这些属性的示例。

2 个答案:

答案 0 :(得分:2)

这是适用于所有句柄的DBI attribute。它记录在DBI库中。 AFAIK它适用于DBD :: mysql和每个DBI驱动程序。

答案 1 :(得分:1)

如果您搜索dbdimp.c,我会发现:

 *
 *  Name:    dbd_st_blob_read
 *
 *  Purpose: Used for blob reads if the statement handles "LongTruncOk"
 *           attribute (currently not supported by DBD::mysql)

我找不到任何对longreadlen的引用。注意,我自己不使用DBD :: mysql,这只是代码中的快速搜索。