php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #71639 mysqli_fetch_field_direct def returns blank
Submitted: 2016-02-21 03:10 UTC Modified: 2016-03-06 04:22 UTC
From: andrew dot collier82 at yahoo dot com dot au Assigned:
Status: No Feedback Package: MySQLi related
PHP Version: 5.5.32 OS: Windows 8.1
Private report: No CVE-ID: None
Have you experienced this issue?
Rate the importance of this bug to you:

 [2016-02-21 03:10 UTC] andrew dot collier82 at yahoo dot com dot au
Description:
------------
mysqli_fetch_field_direct does not return any value for default.

Test script:
---------------
$colInc=0;
while ($colInc < mysqli_num_fields($result)){
   $field = mysqli_fetch_field_direct($result, $colInc);
   $returnFields[] = $field->name;
   $returnFieldType[] = $field->type;
   $returnFieldDefault[] = $field->def;
   $colInc++;
}



Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2016-02-21 11:02 UTC] ab@php.net
-Status: Open +Status: Feedback
 [2016-02-21 11:02 UTC] ab@php.net
Thank you for this bug report. To properly diagnose the problem, we
need a short but complete example script to be able to reproduce
this bug ourselves. 

A proper reproducing script starts with <?php and ends with ?>,
is max. 10-20 lines long and does not require any external 
resources such as databases, etc. If the script requires a 
database to demonstrate the issue, please make sure it creates 
all necessary tables, stored procedures etc.

Please avoid embedding huge scripts into the report.

Thanks for the report. We need a complete reproduce case with the complete code, table creation and some data that reproduce the issue.

Thanks.
 [2016-03-06 04:22 UTC] php-bugs at lists dot php dot net
No feedback was provided. The bug is being suspended because
we assume that you are no longer experiencing the problem.
If this is not the case and you are able to provide the
information that was requested earlier, please do so and
change the status of the bug back to "Re-Opened". Thank you.
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Thu Mar 28 22:01:26 2024 UTC