array ( 0 => 'index.php', 1 => 'PHP Manual', ), 'head' => array ( 0 => 'UTF-8', 1 => 'de', ), 'this' => array ( 0 => 'function.odbc-field-scale.php', 1 => 'odbc_field_scale', 2 => 'Get the scale of a field', ), 'up' => array ( 0 => 'ref.uodbc.php', 1 => 'ODBC Funktionen', ), 'prev' => array ( 0 => 'function.odbc-field-precision.php', 1 => 'odbc_field_precision', ), 'next' => array ( 0 => 'function.odbc-field-type.php', 1 => 'odbc_field_type', ), 'alternatives' => array ( ), 'source' => array ( 'lang' => 'en', 'path' => 'reference/uodbc/functions/odbc-field-scale.xml', ), 'history' => array ( ), ); $setup["toc"] = $TOC; $setup["toc_deprecated"] = $TOC_DEPRECATED; $setup["parents"] = $PARENTS; manual_setup($setup); contributors($setup); ?>

odbc_field_scale

(PHP 4, PHP 5, PHP 7, PHP 8)

odbc_field_scaleGet the scale of a field

Beschreibung

odbc_field_scale(Odbc\Result $statement, int $field): int|false

Gets the scale of the field referenced by number in the given result identifier.

Parameter-Liste

statement

Das ODBC-Ergebnis-Objekt.

field

The field number. Field numbering starts at 1.

Rückgabewerte

Returns the field scale as an integer, or false on error.

Changelog

Version Beschreibung
8.4.0 statement erwartet nun eine Instanz von Odbc\Result; vorher wurde eine Ressource erwartet.