Jump to content

ORA-24333 Zero Iteration Count


jkr

Recommended Posts

Hi,

hope someone can help me out with this. I'm having a hard time executing a statement in PHP (which works fine in SQL clients, e.g. sqlplus). I want to have a search result from a fulltext search (using the ctx_ddl package) put into a temporary table, with the keywords highlighted. The statement looks somewhat like this:

[code]EXEC ctx_doc.markup('MY_BASIC_INDEX', 'my key/s', 'the keyword to highlight', 'MY_TEMPORARY_TABLE', 1, FALSE, 'HTML_NAVIGATE');[/code]

The statement works very fine in SQLPlus, but when I execute it in PHP, I get the error ORA-24333 ("zero iteration count").

[code]
$sql = "EXEC ctx_doc.markup('MY_BASIC_INDEX', 'my key/s', 'the keyword to highlight', 'MY_TEMPORARY_TABLE', 1, FALSE, 'HTML_NAVIGATE')";
$stmt = OCIParse($sql); // returns a good value
OCIExecute($stmt); // fails
[/code]

Any ideas?

Regards,
Jonas
Link to comment
https://forums.phpfreaks.com/topic/28971-ora-24333-zero-iteration-count/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.