| @@ 442-450 (lines=9) @@ | ||
| 439 | return mysqli_free_result($result); |
|
| 440 | } |
|
| 441 | ||
| 442 | function mysql_field_name($result, $field) |
|
| 443 | { |
|
| 444 | if (!\Dshafik\MySQL::checkValidResult($result, __FUNCTION__)) { |
|
| 445 | // @codeCoverageIgnoreStart |
|
| 446 | return false; |
|
| 447 | // @codeCoverageIgnoreEnd |
|
| 448 | } |
|
| 449 | return \Dshafik\MySQL::mysqlFieldInfo($result, $field, 'name'); |
|
| 450 | } |
|
| 451 | ||
| 452 | function mysql_field_table($result, $field) |
|
| 453 | { |
|
| @@ 472-480 (lines=9) @@ | ||
| 469 | return \Dshafik\MySQL::mysqlFieldInfo($result, $field, 'length'); |
|
| 470 | } |
|
| 471 | ||
| 472 | function mysql_field_type($result, $field) |
|
| 473 | { |
|
| 474 | if (!\Dshafik\MySQL::checkValidResult($result, __FUNCTION__)) { |
|
| 475 | // @codeCoverageIgnoreStart |
|
| 476 | return false; |
|
| 477 | // @codeCoverageIgnoreEnd |
|
| 478 | } |
|
| 479 | return \Dshafik\MySQL::mysqlFieldInfo($result, $field, 'type'); |
|
| 480 | } |
|
| 481 | ||
| 482 | function mysql_field_flags($result, $field) |
|
| 483 | { |
|