Insert.php in Drupal 10
Same filename in this branch
- 10 core/lib/Drupal/Core/Database/Query/Insert.php
- 10 core/lib/Drupal/Core/Database/Driver/sqlite/Insert.php
- 10 core/lib/Drupal/Core/Database/Driver/pgsql/Insert.php
- 10 core/lib/Drupal/Core/Database/Driver/mysql/Insert.php
- 10 core/modules/sqlite/src/Driver/Database/sqlite/Insert.php
- 10 core/modules/pgsql/src/Driver/Database/pgsql/Insert.php
- 10 core/modules/mysql/src/Driver/Database/mysql/Insert.php
- 10 core/tests/fixtures/database_drivers/module/corefake/src/Driver/Database/corefakeWithAllCustomClasses/Insert.php
- 10 core/modules/system/tests/modules/driver_test/src/Driver/Database/DrivertestMysql/Insert.php
- 10 core/modules/system/tests/modules/driver_test/src/Driver/Database/DrivertestPgsql/Insert.php
- 10 core/modules/system/tests/modules/driver_test/src/Driver/Database/DrivertestMysqlDeprecatedVersion/Insert.php
Same filename and directory in other branches
Namespace
Drupal\Core\Database\Driver\sqliteFile
core/lib/Drupal/Core/Database/Driver/sqlite/Insert.phpView source
<?php
namespace Drupal\Core\Database\Driver\sqlite;
use Drupal\sqlite\Driver\Database\sqlite\Insert as SqliteInsert;
@trigger_error('\\Drupal\\Core\\Database\\Driver\\sqlite\\Insert is deprecated in drupal:9.4.0 and is removed from drupal:11.0.0. The SQLite database driver has been moved to the sqlite module. See https://www.drupal.org/node/3129492', E_USER_DEPRECATED);
/**
* SQLite implementation of \Drupal\Core\Database\Query\Insert.
*
* @deprecated in drupal:9.4.0 and is removed from drupal:11.0.0. The SQLite
* database driver has been moved to the sqlite module.
*
* @see https://www.drupal.org/node/3129492
*/
class Insert extends SqliteInsert {
}
Classes
Name | Description |
---|---|
Insert Deprecated | SQLite implementation of \Drupal\Core\Database\Query\Insert. |