Insert::execute |
function |
core/modules/sqlite/src/Driver/Database/sqlite/Insert.php |
|
Insert::execute |
function |
core/modules/mysql/src/Driver/Database/mysql/Insert.php |
|
Insert::execute |
function |
core/modules/pgsql/src/Driver/Database/pgsql/Insert.php |
|
Insert::execute |
function |
core/lib/Drupal/Core/Database/Query/Insert.php |
Executes the insert query. |
Insert::from |
function |
core/lib/Drupal/Core/Database/Query/Insert.php |
Sets the fromQuery on this InsertQuery object. |
Insert::preExecute |
function |
core/lib/Drupal/Core/Database/Query/Insert.php |
Preprocesses and validates the query. |
Insert::__construct |
function |
core/lib/Drupal/Core/Database/Query/Insert.php |
Constructs an Insert object. |
Insert::__toString |
function |
core/modules/sqlite/src/Driver/Database/sqlite/Insert.php |
|
Insert::__toString |
function |
core/modules/mysql/src/Driver/Database/mysql/Insert.php |
|
Insert::__toString |
function |
core/modules/pgsql/src/Driver/Database/pgsql/Insert.php |
|
Insert::__toString |
function |
core/lib/Drupal/Core/Database/Query/Insert.php |
Implements PHP magic __toString method to convert the query to a string. |
InsertCommand |
class |
core/lib/Drupal/Core/Ajax/InsertCommand.php |
Generic AJAX command for inserting content. |
InsertCommand.php |
file |
core/lib/Drupal/Core/Ajax/InsertCommand.php |
|
InsertCommand::$content |
property |
core/lib/Drupal/Core/Ajax/InsertCommand.php |
The content for the matched element(s). |
InsertCommand::$selector |
property |
core/lib/Drupal/Core/Ajax/InsertCommand.php |
A CSS selector string. |
InsertCommand::$settings |
property |
core/lib/Drupal/Core/Ajax/InsertCommand.php |
A settings array to be passed to any attached JavaScript behavior. |
InsertCommand::render |
function |
core/lib/Drupal/Core/Ajax/InsertCommand.php |
Implements Drupal\Core\Ajax\CommandInterface:render(). |
InsertCommand::__construct |
function |
core/lib/Drupal/Core/Ajax/InsertCommand.php |
Constructs an InsertCommand object. |
InsertDefaultsTest |
class |
core/tests/Drupal/KernelTests/Core/Database/InsertDefaultsTest.php |
Tests the Insert query builder with default values. |
InsertDefaultsTest.php |
file |
core/tests/Drupal/KernelTests/Core/Database/InsertDefaultsTest.php |
|
InsertDefaultsTest::testDefaultEmptyInsert |
function |
core/tests/Drupal/KernelTests/Core/Database/InsertDefaultsTest.php |
Tests that no action will be preformed if no fields are specified. |
InsertDefaultsTest::testDefaultInsert |
function |
core/tests/Drupal/KernelTests/Core/Database/InsertDefaultsTest.php |
Tests that we can run a query that uses default values for everything. |
InsertDefaultsTest::testDefaultInsertWithFields |
function |
core/tests/Drupal/KernelTests/Core/Database/InsertDefaultsTest.php |
Tests that we can insert fields with values and defaults in the same query. |
InsertLobTest |
class |
core/tests/Drupal/KernelTests/Core/Database/InsertLobTest.php |
Tests the Insert query builder with LOB fields. |
InsertLobTest.php |
file |
core/tests/Drupal/KernelTests/Core/Database/InsertLobTest.php |
|
InsertLobTest::testInsertMultipleBlob |
function |
core/tests/Drupal/KernelTests/Core/Database/InsertLobTest.php |
Tests that we can insert multiple blob fields in the same query. |
InsertLobTest::testInsertNullBlob |
function |
core/tests/Drupal/KernelTests/Core/Database/InsertLobTest.php |
Tests that we can insert a null into blob field. |
InsertLobTest::testInsertOneBlob |
function |
core/tests/Drupal/KernelTests/Core/Database/InsertLobTest.php |
Tests that we can insert a single blob field successfully. |
InsertTest |
class |
core/tests/Drupal/KernelTests/Core/Database/InsertTest.php |
Tests the insert builder. |
InsertTest.php |
file |
core/tests/Drupal/KernelTests/Core/Database/InsertTest.php |
|
InsertTest::testInsertFieldOnlyDefinition |
function |
core/tests/Drupal/KernelTests/Core/Database/InsertTest.php |
Tests that we can specify fields without values and specify values later. |
InsertTest::testInsertIntegrityViolation |
function |
core/tests/Drupal/KernelTests/Core/Database/InsertTest.php |
Tests insertion integrity violation with no default value for a column. |
InsertTest::testInsertLastInsertID |
function |
core/tests/Drupal/KernelTests/Core/Database/InsertTest.php |
Tests that inserts return the proper auto-increment ID. |
InsertTest::testInsertSelectAll |
function |
core/tests/Drupal/KernelTests/Core/Database/InsertTest.php |
Tests that the INSERT INTO ... SELECT * ... syntax works. |
InsertTest::testInsertSelectFields |
function |
core/tests/Drupal/KernelTests/Core/Database/InsertTest.php |
Tests that the INSERT INTO ... SELECT (fields) ... syntax works. |
InsertTest::testMultiInsert |
function |
core/tests/Drupal/KernelTests/Core/Database/InsertTest.php |
Tests that we can insert multiple records in one query object. |
InsertTest::testRepeatedInsert |
function |
core/tests/Drupal/KernelTests/Core/Database/InsertTest.php |
Tests that an insert object can be reused with new data after it executes. |
InsertTest::testSimpleInsert |
function |
core/tests/Drupal/KernelTests/Core/Database/InsertTest.php |
Tests very basic insert functionality. |
InsertTest::testSpecialColumnInsert |
function |
core/tests/Drupal/KernelTests/Core/Database/InsertTest.php |
Tests that we can INSERT INTO a special named column. |
InsertTrait |
trait |
core/lib/Drupal/Core/Database/Query/InsertTrait.php |
Provides common functionality for INSERT and UPSERT queries. |
InsertTrait.php |
file |
core/lib/Drupal/Core/Database/Query/InsertTrait.php |
|
InsertTrait::$defaultFields |
property |
core/lib/Drupal/Core/Database/Query/InsertTrait.php |
An array of fields that should be set to their database-defined defaults. |
InsertTrait::$insertFields |
property |
core/lib/Drupal/Core/Database/Query/InsertTrait.php |
An array of fields on which to insert. |
InsertTrait::$insertValues |
property |
core/lib/Drupal/Core/Database/Query/InsertTrait.php |
A nested array of values to insert. |
InsertTrait::$table |
property |
core/lib/Drupal/Core/Database/Query/InsertTrait.php |
The table on which to insert. |
InsertTrait::count |
function |
core/lib/Drupal/Core/Database/Query/InsertTrait.php |
|
InsertTrait::fields |
function |
core/lib/Drupal/Core/Database/Query/InsertTrait.php |
Adds a set of field->value pairs to be inserted. |
InsertTrait::getInsertPlaceholderFragment |
function |
core/lib/Drupal/Core/Database/Query/InsertTrait.php |
Returns the query placeholders for values that will be inserted. |
InsertTrait::useDefaults |
function |
core/lib/Drupal/Core/Database/Query/InsertTrait.php |
Specifies fields for which the database defaults should be used. |
InsertTrait::values |
function |
core/lib/Drupal/Core/Database/Query/InsertTrait.php |
Adds another set of values to the query to be inserted. |