0
I have an app PHP
that synchronizes data from one database to another, at a given time, when consulting a database Postgre
, after properly completing the variables $db
and $sql
I have the following code snippet:
$query = ibase_query($db, $sql);
while ($row = ibase_fetch_object($query)) {
...
}
The problem happens on line 2, ibase_fetch_object($query)
, the log says:
Warning: ibase_fetch_object(): Operating system Directive Writefile failed There is not enough space on the disk.
I found nothing regarding Writefile in this method at documentation.
Can someone tell me why this mistake and how to fix it?