| @@ 427-435 (lines=9) @@ | ||
| 424 | return mysqli_free_result($result); |
|
| 425 | } |
|
| 426 | ||
| 427 | function mysql_field_name($result, $field) |
|
| 428 | { |
|
| 429 | if (!\Dshafik\MySQL::checkValidResult($result, __FUNCTION__)) { |
|
| 430 | // @codeCoverageIgnoreStart |
|
| 431 | return false; |
|
| 432 | // @codeCoverageIgnoreEnd |
|
| 433 | } |
|
| 434 | return \Dshafik\MySQL::mysqlFieldInfo($result, $field, 'name'); |
|
| 435 | } |
|
| 436 | ||
| 437 | function mysql_field_table($result, $field) |
|
| 438 | { |
|
| @@ 457-465 (lines=9) @@ | ||
| 454 | return \Dshafik\MySQL::mysqlFieldInfo($result, $field, 'length'); |
|
| 455 | } |
|
| 456 | ||
| 457 | function mysql_field_type($result, $field) |
|
| 458 | { |
|
| 459 | if (!\Dshafik\MySQL::checkValidResult($result, __FUNCTION__)) { |
|
| 460 | // @codeCoverageIgnoreStart |
|
| 461 | return false; |
|
| 462 | // @codeCoverageIgnoreEnd |
|
| 463 | } |
|
| 464 | return \Dshafik\MySQL::mysqlFieldInfo($result, $field, 'type'); |
|
| 465 | } |
|
| 466 | ||
| 467 | function mysql_field_flags($result, $field) |
|
| 468 | { |
|