标签: php oracle zend-framework blob
如何使用zend db将blob插入到oracle数据库的blob列中,我试着查看Zend文档,但无法找到它。
答案 0 :(得分:3)
像这样,
$blobimage = file_get_contents("path/to/some/image"); $data = array('blobcolumn' => $blobimage); $this->insert(bin2hex($data));
$this指向Zend_Db_Table
$this
Zend_Db_Table