| @@ 564-572 (lines=9) @@ | ||
| 561 | return mysqli_free_result($result); |
|
| 562 | } |
|
| 563 | ||
| 564 | function mysql_field_name($result, $field) |
|
| 565 | { |
|
| 566 | if (!\Dshafik\MySQL::checkValidResult($result, __FUNCTION__)) { |
|
| 567 | // @codeCoverageIgnoreStart |
|
| 568 | return false; |
|
| 569 | // @codeCoverageIgnoreEnd |
|
| 570 | } |
|
| 571 | return \Dshafik\MySQL::mysqlFieldInfo($result, $field, 'name'); |
|
| 572 | } |
|
| 573 | ||
| 574 | function mysql_field_table($result, $field) |
|
| 575 | { |
|
| @@ 594-602 (lines=9) @@ | ||
| 591 | return \Dshafik\MySQL::mysqlFieldInfo($result, $field, 'length'); |
|
| 592 | } |
|
| 593 | ||
| 594 | function mysql_field_type($result, $field) |
|
| 595 | { |
|
| 596 | if (!\Dshafik\MySQL::checkValidResult($result, __FUNCTION__)) { |
|
| 597 | // @codeCoverageIgnoreStart |
|
| 598 | return false; |
|
| 599 | // @codeCoverageIgnoreEnd |
|
| 600 | } |
|
| 601 | return \Dshafik\MySQL::mysqlFieldInfo($result, $field, 'type'); |
|
| 602 | } |
|
| 603 | ||
| 604 | function mysql_field_flags($result, $field) |
|
| 605 | { |
|