$list CodeIgniter\Database\MySQLi\Result#82 (8)
  • Properties (8)
  • Methods (24)
  • public connID -> mysqli#79 (18)
    $list->connID
    • Properties (18)
    • Methods (42)
    • Static methods (1)
    public resultID -> mysqli_result#81 (5)
    $list->resultID
    • Properties (5)
    • Methods (16)
    • Iterator
    public resultArray -> array (0)
    $list->resultArray
    public resultObject -> array (0)
    $list->resultObject
    public customResultObject -> array (0)
    $list->customResultObject
    public currentRow -> integer 0
    $list->currentRow
    protected numRows -> null
    public rowData -> null
    $list->rowData
  • public getFieldCount(): int Gets the number of fields in the result set.
    $list->getFieldCount()
    /**
     * Gets the number of fields in the result set.
     */
    
    Defined in .../Database/MySQLi/Result.php:32
    public getFieldNames(): array Generates an array of column names in the result set.
    $list->getFieldNames()
    /**
     * Generates an array of column names in the result set.
     */
    
    Defined in .../Database/MySQLi/Result.php:40
    public getFieldData(): array Generates an array of objects representing field meta-data.
    $list->getFieldData()
    /**
     * Generates an array of objects representing field meta-data.
     */
    
    Defined in .../Database/MySQLi/Result.php:55
    public freeResult(): void Frees the current result.
    $list->freeResult()
    /**
     * Frees the current result.
     *
     * @return void
     */
    
    Defined in .../Database/MySQLi/Result.php:111
    public dataSeek(int $n = 0): bool Moves the internal pointer to the desired offset. This is called internally b...
    $list->dataSeek()
    /**
     * Moves the internal pointer to the desired offset. This is called
     * internally before fetching results to make sure the result set
     * starts at zero.
     *
     * @return bool
     */
    
    Defined in .../Database/MySQLi/Result.php:126
    protected fetchAssoc(): array|false|null Returns the result set as an array.
    /**
     * Returns the result set as an array.
     *
     * Overridden by driver classes.
     *
     * @return array|false|null
     */
    
    Defined in .../Database/MySQLi/Result.php:138
    protected fetchObject(string $className = 'stdClass'): Entity|false|object|stdClass Returns the result set as an object.
    /**
     * Returns the result set as an object.
     *
     * Overridden by child classes.
     *
     * @return Entity|false|object|stdClass
     */
    
    Defined in .../Database/MySQLi/Result.php:150
    public getNumRows(): int Returns the number of rows in the resultID (i.e., mysqli_result object)
    $list->getNumRows()
    /**
     * Returns the number of rows in the resultID (i.e., mysqli_result object)
     */
    
    Defined in .../Database/MySQLi/Result.php:162
    public __construct(&$connID, &$resultID) Constructor
    new \CodeIgniter\Database\MySQLi\Result()
    /**
     * Constructor
     *
     * @param TConnection $connID
     * @param TResult     $resultID
     */
    
    Inherited from CodeIgniter\Database\BaseResult
    Defined in .../Database/BaseResult.php:89
    public getResult(string $type = 'object'): array Retrieve the results of the query. Typically an array of individual data rows...
    $list->getResult()
    /**
     * Retrieve the results of the query. Typically an array of
     * individual data rows, which can be either an 'array', an
     * 'object', or a custom class name.
     *
     * @param string $type The row type. Either 'array', 'object', or a class name to use
     */
    
    Inherited from CodeIgniter\Database\BaseResult
    Defined in .../Database/BaseResult.php:102
    public getCustomResultObject(string $className): array Returns the results as an array of custom objects.
    $list->getCustomResultObject()
    /**
     * Returns the results as an array of custom objects.
     *
     * @param class-string $className
     *
     * @return array
     */
    
    Inherited from CodeIgniter\Database\BaseResult
    Defined in .../Database/BaseResult.php:122
    public getResultArray(): array Returns the results as an array of arrays.
    $list->getResultArray()
    /**
     * Returns the results as an array of arrays.
     *
     * If no results, an empty array is returned.
     */
    
    Inherited from CodeIgniter\Database\BaseResult
    Defined in .../Database/BaseResult.php:173
    public getResultObject(): array Returns the results as an array of objects.
    $list->getResultObject()
    /**
     * Returns the results as an array of objects.
     *
     * If no results, an empty array is returned.
     *
     * @return list<stdClass>
     */
    
    Inherited from CodeIgniter\Database\BaseResult
    Defined in .../Database/BaseResult.php:212
    public getRow($n = 0, string $type = 'object'): ($n is string ? float|int|string|null : ($type is 'object' ? stdClass|null : ($type is 'array' ? array|null : T|null))) Wrapper object to return a row as either an array, an object, or a custom class.
    $list->getRow()
    /**
     * Wrapper object to return a row as either an array, an object, or
     * a custom class.
     *
     * If the row doesn't exist, returns null.
     *
     * @template T of object
     *
     * @param int|string                       $n    The index of the results to return, or column name.
     * @param 'array'|'object'|class-string<T> $type The type of result object. 'array', 'object' or class name.
     *
     * @return ($n is string ? float|int|string|null : ($type is 'object' ? stdClass|null : ($type is 'array' ? array|null : T|null)))
     */
    
    Inherited from CodeIgniter\Database\BaseResult
    Defined in .../Database/BaseResult.php:261
    public getCustomRowObject(int $n, string $className): T|null Returns a row as a custom class instance.
    $list->getCustomRowObject()
    /**
     * Returns a row as a custom class instance.
     *
     * If the row doesn't exist, returns null.
     *
     * @template T of object
     *
     * @param int             $n         The index of the results to return.
     * @param class-string<T> $className
     *
     * @return T|null
     */
    
    Inherited from CodeIgniter\Database\BaseResult
    Defined in .../Database/BaseResult.php:301
    public getRowArray(int $n = 0): array|null Returns a single row from the results as an array.
    $list->getRowArray()
    /**
     * Returns a single row from the results as an array.
     *
     * If row doesn't exist, returns null.
     *
     * @return array|null
     */
    
    Inherited from CodeIgniter\Database\BaseResult
    Defined in .../Database/BaseResult.php:325
    public getRowObject(int $n = 0): object|stdClass|null Returns a single row from the results as an object.
    $list->getRowObject()
    /**
     * Returns a single row from the results as an object.
     *
     * If row doesn't exist, returns null.
     *
     * @return object|stdClass|null
     */
    
    Inherited from CodeIgniter\Database\BaseResult
    Defined in .../Database/BaseResult.php:346
    public setRow($key, $value = null): void Assigns an item into a particular column slot.
    $list->setRow()
    /**
     * Assigns an item into a particular column slot.
     *
     * @param array|string               $key
     * @param array|object|stdClass|null $value
     *
     * @return void
     */
    
    Inherited from CodeIgniter\Database\BaseResult
    Defined in .../Database/BaseResult.php:368
    public getFirstRow(string $type = 'object'): array|object|null Returns the "first" row of the current results.
    $list->getFirstRow()
    /**
     * Returns the "first" row of the current results.
     *
     * @return array|object|null
     */
    
    Inherited from CodeIgniter\Database\BaseResult
    Defined in .../Database/BaseResult.php:393
    public getLastRow(string $type = 'object'): array|object|null Returns the "last" row of the current results.
    $list->getLastRow()
    /**
     * Returns the "last" row of the current results.
     *
     * @return array|object|null
     */
    
    Inherited from CodeIgniter\Database\BaseResult
    Defined in .../Database/BaseResult.php:405
    public getNextRow(string $type = 'object'): array|object|null Returns the "next" row of the current results.
    $list->getNextRow()
    /**
     * Returns the "next" row of the current results.
     *
     * @return array|object|null
     */
    
    Inherited from CodeIgniter\Database\BaseResult
    Defined in .../Database/BaseResult.php:417
    public getPreviousRow(string $type = 'object'): array|object|null Returns the "previous" row of the current results.
    $list->getPreviousRow()
    /**
     * Returns the "previous" row of the current results.
     *
     * @return array|object|null
     */
    
    Inherited from CodeIgniter\Database\BaseResult
    Defined in .../Database/BaseResult.php:432
    public getUnbufferedRow(string $type = 'object'): array|object|null Returns an unbuffered row and move the pointer to the next row.
    $list->getUnbufferedRow()
    /**
     * Returns an unbuffered row and move the pointer to the next row.
     *
     * @return array|object|null
     */
    
    Inherited from CodeIgniter\Database\BaseResult
    Defined in .../Database/BaseResult.php:451
    private CodeIgniter\Database\BaseResult::isValidResultId(): bool
    Inherited from CodeIgniter\Database\BaseResult
    Defined in .../Database/BaseResult.php:484
G.cam - Live G Webcams
50 models
❤️ Favorites
⭐ Featured
🆕 New Models
🎮 Interactive Toys
🎉 Party
🎯 Goal Chat
Active Filters:
⭐ Featured ×
Page 1 of 3

🔍 Search & Filters

📂 Categories
  • All Models 143
  • Favorite models 0
  • Recent models viewed
  • VR Live cams
🌍 Ethnicity
  • Asian 23
  • Black 18
  • Latino 31
  • White 45
  • Mixed 26
💪 Body Type
  • Twink 28
  • Athletic 35
  • Muscle 22
  • Bear 19
  • Dad Bod 15
  • Average 24
🎂 Age
  • 18-25 42
  • 26-35 58
  • 36-45 28
  • 46+ 15
✨ Features
  • HD Cams 89
  • Interactive Toys 45
  • VIP Shows 32
  • New Models 18
💰 Price Range
  • Free 12
  • $0.50 - $1.50 45
  • $1.51 - $3.00 62
  • $3.01 - $4.00 23
  • > $4.00 1
Join Free 🔑 Log In 📧 Contact Us 💬 Chat Support Help 📄 Terms 🌐 Language 🤝 Affiliates 🎥 Model Sign Up
15% OFF
Expires in
10:00
💰 Add Credits 🏆 Contests 📺 Channels 🎁 Free Content Favorites 💬 Messages 🆘 Support 🔥 Deals