downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | links | conferences | my php.net

search for in the

sqlite_fetch_single> <sqlite_fetch_column_types
Last updated: Fri, 30 Oct 2009

view this page in

sqlite_fetch_object

SQLiteResult->fetchObject

SQLiteUnbuffered->fetchObject

(PHP 5)

sqlite_fetch_object -- SQLiteResult->fetchObject -- SQLiteUnbuffered->fetchObjectHolt sich die nächste Reihe des Ergebnisses und gibt diese als Objekt zurück

Beschreibung

object sqlite_fetch_object ( resource $result [, string $class_name [, array $ctor_params [, bool $decode_binary = true ]]] )

Objektorientierter Stil (Methode):

SQLiteResult
object fetchObject ([ string $class_name [, array $ctor_params [, bool $decode_binary = true ]]] )
SQLiteUnbuffered
object fetchObject ([ string $class_name [, array $ctor_params [, bool $decode_binary = true ]]] )
Warnung

Diese Funktion ist bis jetzt nicht dokumentiert. Es steht nur die Liste der Argumente zur Verfügung.



sqlite_fetch_single> <sqlite_fetch_column_types
Last updated: Fri, 30 Oct 2009
 
add a note add a note User Contributed Notes
sqlite_fetch_object
florian at phpws dot org
12-Aug-2006 05:13
Here is the function from "cscm at meuh dot dyndns dot org" rewriten.
I think it will work better when really assigning the values ;-)
Also I'd replace the empty "bidon" class by stdClass wich is such an empty class and is provided by default.

// Fetch resultset as an object
function sqlite_fetch_object(&$resource){
               $arr =  sqlite_fetch_array($resource);
               $obj = new stdClass();
               foreach ($arr as $key => $value) {
                       # Check is valid $T_VARIABLE
                       if (ereg(\"[a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff]*\", $key)) {
                               $obj->$key = $value;
                       }
               }
               return $obj;
}
vbwebprofi at gmx dot de
12-Mar-2006 03:39
Here a light workaround for PHP 4.x which I use in my DBAccess class :

<?
  function sqlite_fetch_object(&$result) {
    $vO = sqlite_fetch_array($result, SQLITE_ASSOC);

    if($vO) {
      $vO = (object) $vO;
    }

    return $vO;
  }
?>

HTH Holger
cscm at meuh dot dyndns dot org
04-Feb-2006 12:35
As the sqlite_fetch_object function is not implemented in the PECL extension version 1.0.3.
I’ve rewrite the sqlite_fetch_object in PHP :

// An empty class
class bidon {
}
   
// Fetch resultset as an object
function sqlite_fetch_object(&$resource){
                $arr =  sqlite_fetch_array($resource);
                $obj = new bidon();
                foreach ($arr as $key => $value) {
                        # Check is valid $T_VARIABLE
                        if (ereg(\"[a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff]*\", $key)) {
                                $obj->$key;
                        }
                }
                return $obj;
}

Voila
Benjamin
22-Sep-2004 05:34
This function is not implemented in the PECL extension version 1.0.3  http://pecl.php.net/package/SQLite/1.0.3

sqlite_fetch_single> <sqlite_fetch_column_types
Last updated: Fri, 30 Oct 2009
 
 
show source | credits | stats | sitemap | contact | advertising | mirror sites