Db\Adapter::insertAsDict

public boolean insertAsDict (string $table, array $data, [array $dataTypes]) Inserts data into a table using custom RBDM SQL syntax //Inserting a new robot $success = $connection->insertAsDict( "robots", array( "name" => "Astro Boy", "year" => 1952 ) ); //Next SQL sentence is sent to the database system INSERT INTO `robots` (`name`, `year`) VALUES ("Astro boy", 1952);

Db\Adapter::insert

public boolean insert (string | array $table, array $values, [array $fields], [array $dataTypes]) Inserts data into a table using custom RDBMS SQL syntax // Inserting a new robot $success = $connection->insert( "robots", array("Astro Boy", 1952), array("name", "year") ); // Next SQL sentence is sent to the database system INSERT INTO `robots` (`name`, `year`) VALUES ("Astro boy", 1952);

Db\Adapter::getType

public getType () Type of database system the adapter is used for

Db\Adapter::getSqlVariables

public getSqlVariables () Active SQL bound parameter variables

Db\Adapter::getSQLStatement

public getSQLStatement () Active SQL statement in the object

Db\Adapter::getSQLBindTypes

public array getSQLBindTypes () Active SQL statement in the object

Db\Adapter::getRealSQLStatement

public getRealSQLStatement () Active SQL statement in the object without replace bound paramters

Db\Adapter::getNestedTransactionSavepointName

public getNestedTransactionSavepointName () Returns the savepoint name to use for nested transactions

Db\Adapter::getEventsManager

public getEventsManager () Returns the internal event manager

Db\Adapter::getDialectType

public getDialectType () Name of the dialect used