| @@ 448-456 (lines=9) @@ | ||
| 445 | return mysqli_free_result($result); |
|
| 446 | } |
|
| 447 | ||
| 448 | function mysql_field_name($result, $field) |
|
| 449 | { |
|
| 450 | if (!\Dshafik\MySQL::checkValidResult($result, __FUNCTION__)) { |
|
| 451 | // @codeCoverageIgnoreStart |
|
| 452 | return false; |
|
| 453 | // @codeCoverageIgnoreEnd |
|
| 454 | } |
|
| 455 | return \Dshafik\MySQL::mysqlFieldInfo($result, $field, 'name'); |
|
| 456 | } |
|
| 457 | ||
| 458 | function mysql_field_table($result, $field) |
|
| 459 | { |
|
| @@ 478-486 (lines=9) @@ | ||
| 475 | return \Dshafik\MySQL::mysqlFieldInfo($result, $field, 'length'); |
|
| 476 | } |
|
| 477 | ||
| 478 | function mysql_field_type($result, $field) |
|
| 479 | { |
|
| 480 | if (!\Dshafik\MySQL::checkValidResult($result, __FUNCTION__)) { |
|
| 481 | // @codeCoverageIgnoreStart |
|
| 482 | return false; |
|
| 483 | // @codeCoverageIgnoreEnd |
|
| 484 | } |
|
| 485 | return \Dshafik\MySQL::mysqlFieldInfo($result, $field, 'type'); |
|
| 486 | } |
|
| 487 | ||
| 488 | function mysql_field_flags($result, $field) |
|
| 489 | { |
|