- <?php
-
- * @addtogroup database
- * @{
- */
-
- * @file
- * Query code for MySQL embedded database engine.
- */
-
-
- class InsertQuery_mysql extends InsertQuery {
-
- public function execute() {
- if (!$this->preExecute()) {
- return NULL;
- }
-
-
-
- if (empty($this->fromQuery)) {
- $max_placeholder = 0;
- $values = array();
- foreach ($this->insertValues as $insert_values) {
- foreach ($insert_values as $value) {
- $values[':db_insert_placeholder_' . $max_placeholder++] = $value;
- }
- }
- }
- else {
- $values = $this->fromQuery->getArguments();
- }
-
- $last_insert_id = $this->connection->query((string) $this, $values, $this->queryOptions);
-
-
- $this->insertValues = array();
-
- return $last_insert_id;
- }
-
- public function __toString() {
-
- $comments = $this->connection->makeComment($this->comments);
-
-
- $insert_fields = array_merge($this->defaultFields, $this->insertFields);
-
- if (method_exists($this->connection, 'escapeFields')) {
- $insert_fields = $this->connection->escapeFields($insert_fields);
- }
-
-
-
- if (!empty($this->fromQuery)) {
- $insert_fields_string = $insert_fields ? ' (' . implode(', ', $insert_fields) . ') ' : ' ';
- return $comments . 'INSERT INTO {' . $this->table . '}' . $insert_fields_string . $this->fromQuery;
- }
-
- $query = $comments . 'INSERT INTO {' . $this->table . '} (' . implode(', ', $insert_fields) . ') VALUES ';
-
- $max_placeholder = 0;
- $values = array();
- if (count($this->insertValues)) {
- foreach ($this->insertValues as $insert_values) {
- $placeholders = array();
-
-
-
- $placeholders = array_pad($placeholders, count($this->defaultFields), 'default');
-
- $new_placeholder = $max_placeholder + count($insert_values);
- for ($i = $max_placeholder; $i < $new_placeholder; ++$i) {
- $placeholders[] = ':db_insert_placeholder_' . $i;
- }
- $max_placeholder = $new_placeholder;
- $values[] = '(' . implode(', ', $placeholders) . ')';
- }
- }
- else {
-
- $placeholders = array_fill(0, count($this->defaultFields), 'default');
- $values[] = '(' . implode(', ', $placeholders) . ')';
- }
-
- $query .= implode(', ', $values);
-
- return $query;
- }
- }
-
- class TruncateQuery_mysql extends TruncateQuery { }
-
- class UpdateQuery_mysql extends UpdateQuery {
- public function __toString() {
- if (method_exists($this->connection, 'escapeField')) {
- $escapedFields = array();
- foreach ($this->fields as $field => $data) {
- $field = $this->connection->escapeField($field);
- $escapedFields[$field] = $data;
- }
- $this->fields = $escapedFields;
- }
- return parent::__toString();
- }
- }
-
- * @} End of "addtogroup database".
- */