- 论坛徽章:
- 0
|
一个php文件
a.php
<?php
putenv("ORACLE_BASE=/opt/ora9");
putenv("ORACLE_HOME=/opt/ora9/product/9.2");
putenv("LANG=en_US");
putenv("TNS_ADMIN=/opt/ora9/product/9.2/network/admin");
putenv("ORACLE_SID=ora9i");
putenv("NLS_LANG=AMERICAN_AMERICA.ZHS16GBK");
$conn=ocilogon("username","password");
$stmt = OCIParse($conn, "select * from table");
$a=OCIExecute($stmt);
while (OCIFetchInto ($stmt, $row, OCI_ASSOC))
{
$a1=$row['a'];
$a2=$row['b'];
$a3=$row['c'];
echo $a1." ".$a2." ".$a3."\n";
}
crontab -l
12 18 * * * /usr/local/php/bin/php a.php > a.txt
直接用命令行执行a.php的话没有问题,可以显示表中的数据,但写入cron中就出现问题了,我发现在如果我要把$stmt = OCIParse($conn, "select * from table");这里面的select * 中的*改为具体的字段名称就可以取出值,但是譬如说字段a是整型,a的值就可以正常显示,但如果a的是varchar2的,就会有错误提示,提示如下:
Warning: ociexecute(): OCIStmtExecute: ORA-01029: internal two task error
in /home/oracle/a.php on line 11
Warning: ocifetchinto(): OCIFetchInto: ORA-24374: define not done before fetch or execute and fetch
in /home/oracle/a.php on line 13
请问这是什么问题? |
|