-
-
Notifications
You must be signed in to change notification settings - Fork 17
Open
Description
From PHP manual:
- Arguments for
ibase_query()is not documented properly. They should be like this:
ibase_query(string $query [, mixed ...$bind_args]): resource
ibase_query(resource $link_identifier, string $query [, mixed ...$bind_args]): resource
ibase_query(resource $trans_identifier, string $query [, mixed ...$bind_args]): resource
ibase_query(resource $link_identifier, resource $trans_identifier, string $query [, mixed ...$bind_args]): resource- There is a typo in ibase_prepare():
string $transshould readresource $trans_identifier - To be more consistent I think arguments for
ibase_prepare()should matchibase_query()but w/o bind args. E.g. for now you can doibase_query($trans_id, ...)but can't doibase_prepare($trans_id, ...)
Metadata
Metadata
Assignees
Labels
No labels