JDatabaseQueryMySQLi::insertInto: Difference between revisions
From Joomla! Documentation
m clean up |
m preparing for archive only |
||
| Line 4: | Line 4: | ||
<source lang="php"> | <source lang="php"> | ||
| Line 38: | Line 38: | ||
* {{JVer|11.1}} Subpackage [[API17:Subpackage_Database|Database]] | * {{JVer|11.1}} Subpackage [[API17:Subpackage_Database|Database]] | ||
* [[API17:JDatabaseQueryMySQLi::insertInto|Other versions of JDatabaseQueryMySQLi::insertInto]] | * [[API17:JDatabaseQueryMySQLi::insertInto|Other versions of JDatabaseQueryMySQLi::insertInto]] | ||
===User contributed notes=== | ===User contributed notes=== | ||
=== Code Examples === | |||
<dpl> | <dpl> | ||
noresultsheader=\n | noresultsheader=\n | ||
category=JDatabaseQueryMySQLi::insertInto | category=JDatabaseQueryMySQLi::insertInto | ||
namespace=CodeExample | |||
category=MethodExample | category=MethodExample | ||
include=* | include=* | ||
Latest revision as of 02:45, 25 March 2017
JDatabaseQueryMySQLi::insertInto
Description
public function insertInto (
$table_name
$increment_field=false
)
| Parameter | Type | Default | Description |
|---|---|---|---|
| $table_name | string | A string | |
| $increment_field | boolean | false | Provinding value for autoincrement primary key or not |
- Returns Returns this object to allow chaining.
- Defined on line 362 of libraries/joomla/database/database/mysqliquery.php
- Since

See also
JDatabaseQueryMySQLi::insertInto source code on BitBucket
Class JDatabaseQueryMySQLi
Subpackage Database- Other versions of JDatabaseQueryMySQLi::insertInto
User contributed notes
Code Examples