<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/book.mysqli.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'it',
  ),
  'this' => 
  array (
    0 => 'mysqli.notes.php',
    1 => 'Notes',
    2 => 'Notes',
  ),
  'up' => 
  array (
    0 => 'book.mysqli.php',
    1 => 'MySQLi',
  ),
  'prev' => 
  array (
    0 => 'mysqli.constants.php',
    1 => 'Costanti predefinite',
  ),
  'next' => 
  array (
    0 => 'mysqli.summary.php',
    1 => 'The MySQLi Extension Function Summary',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'en',
    'path' => 'reference/mysqli/notes.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="mysqli.notes" class="chapter">
 <h1 class="title">Notes</h1>


 <p class="para">Some implementation notes:</p>

 <ol type="1">
  <li class="listitem">
   <p class="para">
     Support was added for <code class="literal">MYSQL_TYPE_GEOMETRY</code> 
     to the MySQLi extension in PHP 5.3.
   </p>
  </li>
  <li class="listitem">
   <p class="para">
     Note there are different internal implementations within 
     <code class="literal">libmysqlclient</code> and <code class="literal">mysqlnd</code> for handling 
     columns of type <code class="literal">MYSQL_TYPE_GEOMETRY</code>. Generally speaking, 
     <code class="literal">mysqlnd</code> will allocate significantly less memory. For 
     example, if there is a <code class="literal">POINT</code> 
     column in a result set, <code class="literal">libmysqlclient</code> may pre-allocate up 
     to 4GB of RAM although less than 50 bytes are 
     needed for holding a <code class="literal">POINT</code> column in memory. Memory 
     allocation is much lower, less than 50 bytes, if 
     using <code class="literal">mysqlnd</code>.
   </p>
  </li>
 </ol>

</div>
<?php manual_footer($setup); ?>