|
@@ 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 |
|
|
| 450 |
|
return \Dshafik\MySQL::mysqlFieldInfo($result, $field, 'name'); |
| 451 |
|
} |
| 452 |
|
|
| 453 |
|
function mysql_field_table($result, $field) |
|
@@ 475-483 (lines=9) @@
|
| 472 |
|
return \Dshafik\MySQL::mysqlFieldInfo($result, $field, 'length'); |
| 473 |
|
} |
| 474 |
|
|
| 475 |
|
function mysql_field_type($result, $field) |
| 476 |
|
{ |
| 477 |
|
if (!\Dshafik\MySQL::checkValidResult($result, __FUNCTION__)) { |
| 478 |
|
// @codeCoverageIgnoreStart |
| 479 |
|
return false; |
| 480 |
|
// @codeCoverageIgnoreEnd |
| 481 |
|
} |
| 482 |
|
|
| 483 |
|
return \Dshafik\MySQL::mysqlFieldInfo($result, $field, 'type'); |
| 484 |
|
} |
| 485 |
|
|
| 486 |
|
function mysql_field_flags($result, $field) |