- <?php
-  * @file
-  * Query code for MySQL embedded database engine.
-  */
- 
-  * @addtogroup database
-  * @{
-  */
- 
-  * MySQL-specific class for executing INSERT queries.
-  */
- class InsertQuery_mysql extends InsertQuery {
-   
-    * {@inheritdoc}
-    */
-   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;
-   }
- 
-   
-    * {@inheritdoc}
-    */
-   public function __toString() {
-     
-     $comments = $this->connection->makeComment($this->comments);
- 
-     
-     $insert_fields = array_merge($this->defaultFields, $this->insertFields);
- 
-     
-     foreach ($insert_fields as $field_key => $insert_field) {
-       $insert_fields[$field_key] = $this->connection->escapeField($insert_field);
-     }
- 
-     
-     
-     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 (!is_array($this->insertValues)) {
-       
-       if (version_compare(PHP_VERSION, '7.4', '>=')) {
-         throw new UnexpectedValueException();
-       }
-       else {
-         trigger_error('Unexpected Value');
-       }
-     }
-     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;
-   }
- }
- 
-  * MySQL-specific class for executing TRUNCATE queries.
-  *
-  * Note: This has been used previously but is now empty.
-  *
-  * @todo Remove in Backdrop 2.x.
-  */
- class TruncateQuery_mysql extends TruncateQuery { }
- 
-  * @} End of "addtogroup database".
-  */