GoLang ibase_prepare

request it (317)
GoLang replacement for PHP's ibase_prepare [edit | history]



Do you know a GoLang replacement for PHP's ibase_prepare? Write it!

PHP ibase_prepare

PHP original manual for ibase_prepare [ show | php.net ]

ibase_prepare

(PHP 5, PHP 7)

ibase_preparePrepare a query for later binding of parameter placeholders and execution

Description

resource ibase_prepare ( string $query )
resource ibase_prepare ( resource $link_identifier , string $query )
resource ibase_prepare ( resource $link_identifier , string $trans , string $query )

Prepare a query for later binding of parameter placeholders and execution (via ibase_execute()).

Parameters

query

An InterBase query.

link_identifier

An InterBase link identifier returned from ibase_connect(). If omitted, the last opened link is assumed.

trans

An InterBase transaction handle the query should be associated with. If omitted, the default transaction of the connection is assumed.

Return Values

Returns a prepared query handle, or FALSE on error.