| @@ 433-441 (lines=9) @@ | ||
| 430 | return mysqli_free_result($result); |
|
| 431 | } |
|
| 432 | ||
| 433 | function mysql_field_name($result, $field) |
|
| 434 | { |
|
| 435 | if (!\Dshafik\MySQL::checkValidResult($result, __FUNCTION__)) { |
|
| 436 | // @codeCoverageIgnoreStart |
|
| 437 | return false; |
|
| 438 | // @codeCoverageIgnoreEnd |
|
| 439 | } |
|
| 440 | return \Dshafik\MySQL::mysqlFieldInfo($result, $field, 'name'); |
|
| 441 | } |
|
| 442 | ||
| 443 | function mysql_field_table($result, $field) |
|
| 444 | { |
|
| @@ 463-471 (lines=9) @@ | ||
| 460 | return \Dshafik\MySQL::mysqlFieldInfo($result, $field, 'length'); |
|
| 461 | } |
|
| 462 | ||
| 463 | function mysql_field_type($result, $field) |
|
| 464 | { |
|
| 465 | if (!\Dshafik\MySQL::checkValidResult($result, __FUNCTION__)) { |
|
| 466 | // @codeCoverageIgnoreStart |
|
| 467 | return false; |
|
| 468 | // @codeCoverageIgnoreEnd |
|
| 469 | } |
|
| 470 | return \Dshafik\MySQL::mysqlFieldInfo($result, $field, 'type'); |
|
| 471 | } |
|
| 472 | ||
| 473 | function mysql_field_flags($result, $field) |
|
| 474 | { |
|