ibase_num_params

(PHP 5)

ibase_num_params --  Return the number of parameters in a prepared query

Description

int ibase_num_params ( resource query)

This function returns the number of parameters in the prepared query specified by query. This is the number of binding arguments that must be present when calling ibase_execute().

See also ibase_prepare() and ibase_param_info().

color="#0000BB">$i);
        echo
"name: " . $col_info['name'] . "\n";
        echo
"alias: " . $col_info['alias'] . "\n";
        echo
"relation: " . $col_info['relation'] . "\n";
        echo
"length: " . $col_info['length'] . "\n";
        echo
"type: " . $col_info['type'] . "\n";
    }
?>