pg_num_fields example

$a['command-completion tag'] = pg_result_status($result, \PGSQL_STATUS_STRING);

        if (-1 === $a['num rows']) {
            foreach (self::DIAG_CODES as $k => $v) {
                $a['error'][$k] = pg_result_error_field($result$v);
            }
        }

        $a['affected rows'] = pg_affected_rows($result);
        $a['last OID'] = pg_last_oid($result);

        $fields = pg_num_fields($result);

        for ($i = 0; $i < $fields; ++$i) {
            $field = [
                'name' => pg_field_name($result$i),
                'table' => sprintf('%s (OID: %s)', pg_field_table($result$i)pg_field_table($result$i, true)),
                'type' => sprintf('%s (OID: %s)', pg_field_type($result$i)pg_field_type_oid($result$i)),
                'nullable' => (bool) pg_field_is_null($result$i),
                'storage' => pg_field_size($result$i).' bytes',
                'display' => pg_field_prtlen($result$i).' chars',
            ];
            if (' (OID: )' === $field['table']) {
                

class Result extends BaseResult
{
    /** * Gets the number of fields in the result set. */
    public function getFieldCount(): int
    {
        return pg_num_fields($this->resultID);
    }

    /** * Generates an array of column names in the result set. */
    public function getFieldNames(): array
    {
        $fieldNames = [];

        for ($i = 0, $c = $this->getFieldCount()$i < $c$i++) {
            $fieldNames[] = pg_field_name($this->resultID, $i);
        }
$a['command-completion tag'] = pg_result_status($result, \PGSQL_STATUS_STRING);

        if (-1 === $a['num rows']) {
            foreach (self::DIAG_CODES as $k => $v) {
                $a['error'][$k] = pg_result_error_field($result$v);
            }
        }

        $a['affected rows'] = pg_affected_rows($result);
        $a['last OID'] = pg_last_oid($result);

        $fields = pg_num_fields($result);

        for ($i = 0; $i < $fields; ++$i) {
            $field = [
                'name' => pg_field_name($result$i),
                'table' => sprintf('%s (OID: %s)', pg_field_table($result$i)pg_field_table($result$i, true)),
                'type' => sprintf('%s (OID: %s)', pg_field_type($result$i)pg_field_type_oid($result$i)),
                'nullable' => (bool) pg_field_is_null($result$i),
                'storage' => pg_field_size($result$i).' bytes',
                'display' => pg_field_prtlen($result$i).' chars',
            ];
            if (' (OID: )' === $field['table']) {
                
Home | Imprint | This part of the site doesn't use cookies.