sql >> Databáze >  >> RDS >> Mysql

Příklad použití bind_result vs get_result

Rozhodujícím faktorem pro mě je, zda budu sloupce dotazu volat pomocí * .

Pomocí bind_result() pro toto by bylo lepší:

// Use bind_result() with fetch()
$query1 = 'SELECT id, first_name, last_name, username FROM table WHERE id = ?';

Pomocí get_result() pro toto by bylo lepší:

// Use get_result() with fetch_assoc() 
$query2 = 'SELECT * FROM table WHERE id = ?';

Příklad 1 pro $query1 pomocí bind_result()

$query1 = 'SELECT id, first_name, last_name, username FROM table WHERE id = ?';
$id = 5;

if($stmt = $mysqli->prepare($query)){
   /*
        Binds variables to prepared statement

        i    corresponding variable has type integer
        d    corresponding variable has type double
        s    corresponding variable has type string
        b    corresponding variable is a blob and will be sent in packets
   */
   $stmt->bind_param('i',$id);

   /* execute query */
   $stmt->execute();

   /* Store the result (to get properties) */
   $stmt->store_result();

   /* Get the number of rows */
   $num_of_rows = $stmt->num_rows;

   /* Bind the result to variables */
   $stmt->bind_result($id, $first_name, $last_name, $username);

   while ($stmt->fetch()) {
        echo 'ID: '.$id.'<br>';
        echo 'First Name: '.$first_name.'<br>';
        echo 'Last Name: '.$last_name.'<br>';
        echo 'Username: '.$username.'<br><br>';
   }

   /* free results */
   $stmt->free_result();

   /* close statement */
   $stmt->close();
}

/* close connection */
$mysqli->close();

Příklad 2 pro $query2 pomocí get_result()

$query2 = 'SELECT * FROM table WHERE id = ?'; 
$id = 5;

if($stmt = $mysqli->prepare($query)){
   /*
        Binds variables to prepared statement

        i    corresponding variable has type integer
        d    corresponding variable has type double
        s    corresponding variable has type string
        b    corresponding variable is a blob and will be sent in packets
   */
   $stmt->bind_param('i',$id);

   /* execute query */
   $stmt->execute();

   /* Get the result */
   $result = $stmt->get_result();

   /* Get the number of rows */
   $num_of_rows = $result->num_rows;



   while ($row = $result->fetch_assoc()) {
        echo 'ID: '.$row['id'].'<br>';
        echo 'First Name: '.$row['first_name'].'<br>';
        echo 'Last Name: '.$row['last_name'].'<br>';
        echo 'Username: '.$row['username'].'<br><br>';
   }

   /* free results */
   $stmt->free_result();

   /* close statement */
   $stmt->close();
}

/* close connection */
$mysqli->close();

Jak vidíte, nemůžete použít bind_result s * . Nicméně get_result funguje pro oba, ale bind_result je jednodušší a odstraňuje trochu nepořádku s $row['name'] .

bind_result()

Výhody:

  • Jednodušší
  • Není třeba si zahrávat s $row['name']
  • Používá fetch()

Nevýhody:

  • Nefunguje s dotazem SQL, který používá *

get_result()

Výhody:

  • Funguje se všemi příkazy SQL
  • Používá fetch_assoc()

Nevýhody:

  • Musí si pohrávat s proměnnými pole $row[]
  • Ne tak elegantní
  • vyžaduje nativní ovladač MySQL (mysqlnd )


  1. Automaticky otevírat výsledky dotazu SQLite v textovém editoru

  2. MySQL - UPDATE dotaz založený na SELECT dotazu

  3. Je možné vydat příkaz SELECT z bloku PL/SQL?

  4. execSQL:je bindargs lepší?