标签: php oracle adodb
如何使用Adodb从PHP运行oracle sql文件
答案 0 :(得分:1)
如果它只是一个普通的sql语句,你可以用file_get_contents读取文件并执行它。
$rs = $DB->Execute(file_get_contents('query.sql'));