=== added file 'includes/database/prefetch.inc'
--- includes/database/prefetch.inc	1970-01-01 00:00:00 +0000
+++ includes/database/prefetch.inc	2008-11-09 18:16:31 +0000
@@ -0,0 +1,478 @@
+<?php
+// $Id $
+
+/**
+ * @file
+ * Database interface code for engines that need to fully prefetch the result sets.
+ */
+
+/**
+ * @ingroup database
+ * @{
+ */
+
+/**
+ * An implementation of DatabaseStatementInterface that prefetch all data.
+ */
+class DatabaseStatementPrefetch implements Iterator, DatabaseStatementInterface {
+
+  /**
+   * The query string.
+   *
+   * @var string
+   */
+  protected $queryString;
+
+  /**
+   * Driver-specific options. Can be used by child classes.
+   *
+   * @var Array
+   */
+  protected $driver_options;
+
+  /**
+   * Reference to the database connection object for this statement.
+   *
+   * The name $dbh is inherited from PDOStatement.
+   *
+   * @var DatabaseConnection
+   */
+  public $dbh;
+
+  /**
+   * Main data store.
+   *
+   * @var Array
+   */
+  protected $data = array();
+
+  /**
+   * Flag indicating whether $data contains valid data.
+   *
+   * @var bool
+   */
+  protected $isValid = FALSE;
+
+  /**
+   * The list of column names in that result set.
+   *
+   * @var Array
+   */
+  protected $columNames = NULL;
+
+  /**
+   * The number of rows affected by the last query.
+   *
+   * @var int
+   */
+  protected $rowCount = NULL;
+
+  /**
+   * The number of rows of this result set.
+   *
+   * @var int
+   */
+  protected $resultRowCount = 0;
+
+  /**
+   * Holds the current fetch style.
+   *
+   * @var int
+   */
+  protected $fetchStyle = PDO::FETCH_OBJ;
+
+  /**
+   * Holds supplementary current fetch options.
+   *
+   * @var Array
+   */
+  protected $fetchOptions = array(
+    'class' => 'stdClass',
+    'constructor_args' => array(),
+    'object' => NULL,
+    'column' => 0,
+  );
+
+  /**
+   * Holds the default fetch style.
+   *
+   * @var int
+   */
+  protected $defaultFetchStyle = PDO::FETCH_OBJ;
+
+  /**
+   * Holds supplementary default fetch options.
+   *
+   * @var Array
+   */
+  protected $defaultFetchOptions = array(
+    'class' => 'stdClass',
+    'constructor_args' => array(),
+    'object' => NULL,
+    'column' => 0,
+  );
+
+  public function __construct(DatabaseConnection $database_connection, $query, Array $driver_options = array()) {
+    $this->dbh = $database_connection;
+    $this->queryString = $query;
+    $this->driver_options = $driver_options;
+  }
+
+  /**
+   * Executes a prepared statement
+   *
+   * @param $args
+   *   An array of values with as many elements as there are bound parameters in the SQL statement being executed.
+   * @param $options
+   *   An array of options for this query.
+   * @return
+   *   TRUE on success, or FALSE on failure.
+   */
+  public function execute($args, $options) {
+    if (isset($options['fetch'])) {
+      if (is_string($options['fetch'])) {
+        // Default to an object. Note: db fields will be added to the object
+        // before the constructor is run. If you need to assign fields after
+        // the constructor is run, see http://drupal.org/node/315092.
+        $this->setFetchMode(PDO::FETCH_CLASS, $options['fetch']);
+      }
+      else {
+        $this->setFetchMode($options['fetch']);
+      }
+    }
+    $this->dbh->lastStatement = $this;
+
+    $logger = $this->dbh->getLogger();
+    if (!empty($logger)) {
+      $query_start = microtime(TRUE);
+    }
+
+    // Prepare the query.
+    $statement = $this->getStatement($this->queryString, $args);
+    if (!$statement) {
+      $this->throwPDOException();
+    }
+
+    $return = $statement->execute($args);
+    if (!$return) {
+      $this->throwPDOException();
+    }
+
+    // Fetch all the data from the reply, in order to release any lock
+    // as soon as possible.
+    $this->rowCount = $statement->rowCount();
+    $this->data = $statement->fetchAll(PDO::FETCH_ASSOC);
+    $this->resultRowCount = count($this->data);
+
+    if (count($this->data)) {
+      $this->columnNames = array_keys($this->data[0]);
+      $this->isValid = TRUE;
+    }
+    else {
+      $this->columnNames = array();
+      $this->isValid = FALSE;
+    }
+
+    if (!empty($logger)) {
+      $query_end = microtime(TRUE);
+      $logger->log($this, $args, $query_end - $query_start);
+    }
+
+    // This is necessary to ensure that the array with start in a clean state.
+    reset($this->data);
+
+    return $return;
+  }
+
+  /**
+   * Throw a PDO Exception based on the last PDO error.
+   */
+  protected function throwPDOException() {
+    $error_info = $this->dbh->errorInfo();
+    // We rebuild a message formatted in the same way as PDO.
+    $exception = new PDOException("SQLSTATE[" . $error_info[0] . "]: General error " . $error_info[1] . ": " . $error_info[2]);
+    $exception->errorInfo = $error_info;
+    throw $exception;
+  }
+
+  /**
+   * Grab a PDOStatement object from a given query and its arguments.
+   *
+   * Some drivers (including SQLite) will need to perform some preparation
+   * themselves to get the statement right.
+   *
+   * @param $query
+   *   The query.
+   * @param Array $args
+   *   An array of arguments.
+   * @return
+   *   A PDOStatement object.
+   */
+  protected function getStatement($query, &$args = array()) {
+    return $this->dbh->prepare($query);
+  }
+
+  public function getQueryString() {
+    return $this->queryString;
+  }
+
+  public function setFetchMode($fetchStyle, $a2 = NULL, $a3 = NULL) {
+    $this->defaultFetchStyle = $fetchStyle;
+    switch ($fetchStyle) {
+      case PDO::FETCH_CLASS:
+        $this->defaultFetchOptions['class'] = $a2;
+        if ($a3) {
+          $this->defaultFetchOptions['constructor_args'] = $a3;
+        }
+        break;
+      case PDO::FETCH_COLUMN:
+        $this->defaultFetchOptions['column'] = $a2;
+        break;
+      case PDO::FETCH_INTO:
+        $this->defaultFetchOptions['object'] = $a2;
+        break;
+    }
+
+    // Set the values for the next fetch.
+    $this->fetchStyle = $this->defaultFetchStyle;
+    $this->fetchOptions = $this->defaultFetchOptions;
+  }
+
+  /**
+   * Return the current row formatted according to the current fetch style.
+   *
+   * This is the core method of that class. It grabs the value at the current
+   * array position in $this->data and format it according to $this->fetchStyle
+   * and $this->fetchMode.
+   *
+   * @return
+   *  The current row formatted as requested.
+   */
+  public function current() {
+    $row = current($this->data);
+    if ($row !== FALSE) {
+      switch ($this->fetchStyle) {
+        case PDO::FETCH_ASSOC:
+          return $row;
+        case PDO::FETCH_BOTH:
+          return $row + array_values($row);
+        case PDO::FETCH_NUM:
+          return array_values($row);
+          break;
+        case PDO::FETCH_LAZY:
+          // We are not doing lazy. Fallback to PDO::FETCH_OBJ.
+        case PDO::FETCH_OBJ:
+          return (object) $row;
+        case PDO::FETCH_CLASS | PDO::FETCH_CLASSTYPE:
+          $class_name = array_unshift($row);
+          // Deliberate no break.
+        case PDO::FETCH_CLASS:
+          if (!isset($class_name)) {
+            $class_name = $this->fetchOptions['class'];
+          }
+          if (count($this->fetchOptions['constructor_args'])) {
+            $reflector = new ReflectionClass($class_name);
+            $result = $reflector->newInstanceArgs($this->fetchOptions['constructor_args']);
+          }
+          else {
+            $result = new $class_name();
+          }
+          foreach ($row as $k => $v) {
+            $result->$k = $v;
+          }
+          return $result;
+        case PDO::FETCH_INTO:
+          foreach ($row as $k => $v) {
+            $this->fetchOptions['object']->$k = $v;
+          }
+          return $this->fetchOptions['object'];
+        case PDO::FETCH_COLUMN:
+          if (isset($this->columnNames[$this->fetchOptions['column']])) {
+            return $row[$k][$this->columnNames[$this->fetchOptions['column']]];
+          }
+          else {
+            return;
+          }
+      }
+    }
+  }
+
+  public function key() {
+    return key($this->data);
+  }
+
+  public function rewind() {
+    return reset($this->data);
+  }
+
+  public function next() {
+    // We are fetch rows as PDO::FETCH_ASSOC in execute(),
+    // so no element of the array can ever be FALSE.
+    if (next($this->data) === FALSE) {
+      $this->isValid = FALSE;
+    }
+  }
+
+  public function valid() {
+    return $this->isValid;
+  }
+
+  public function rowCount() {
+    return $this->rowCount;
+  }
+
+  public function fetch($fetch_style = NULL, $cursor_orientation = PDO::FETCH_ORI_NEXT, $cursor_offset = NULL) {
+    if ($this->isValid) {
+      // Set the fetch parameter.
+      $this->fetchStyle = isset($fetch_style) ? $fetch_style : $this->defaultFetchStyle;
+      $this->fetchOptions = $this->defaultFetchOptions;
+
+      // Grab the row in the format specified above.
+      $return = $this->current();
+      // Advance the cursor.
+      $this->next();
+
+      // Reset the fetch parameters to the value stored using setFetchMode().
+      $this->fetchStyle = $this->defaultFetchStyle;
+      $this->fetchOptions = $this->defaultFetchOptions;
+      return $return;
+    }
+    else {
+      return FALSE;
+    }
+  }
+
+  public function fetchField($index = 0) {
+    if ($this->isValid && isset($this->columnNames[$index])) {
+      // We grab the value directly from $this->data, and format it.
+      $current = current($this->data);
+      $return = $current[$this->columnNames[$index]];
+      $this->next();
+      return $return;
+    }
+    else {
+      return FALSE;
+    }
+  }
+
+  public function fetchObject($class_name = NULL, $constructor_args = array()) {
+    if ($this->isValid) {
+      if (isset($class_name)) {
+        $this->fetchStyle = PDO::FETCH_CLASS;
+        $this->fetchOptions = array('constructor_args' => $constructor_args);
+        // Grab the row in the format specified above.
+        $result = $this->current();
+      }
+      else {
+        $this->fetchStyle = PDO::FETCH_OBJ;
+        // Grab the row in the format specified above.
+        $result = $this->current();
+      }
+      $this->next();
+
+      // Reset the fetch parameters to the value stored using setFetchMode().
+      $this->fetchStyle = $this->defaultFetchStyle;
+      $this->fetchOptions = $this->defaultFetchOptions;
+      return $result;
+    }
+    else {
+      return FALSE;
+    }
+  }
+
+  public function fetchAssoc() {
+    if ($this->isValid) {
+      $result = current($this->data);
+      $this->next();
+      return $result;
+    }
+    else {
+      return FALSE;
+    }
+  }
+
+  public function fetchAll($fetch_style = NULL, $fetch_column = NULL, $constructor_args = NULL) {
+    $this->fetchStyle = isset($fetch_style) ? $fetch_style : $this->defaultFetchStyle;
+    $this->fetchOptions = $this->defaultFetchOptions;
+    if (isset($fetch_column)) {
+      $this->fetchOptions['column'] = $fetch_column;
+    }
+    if (isset($constructor_args)) {
+      $this->fetchOptions['constructor_args'] = $constructor_args;
+    }
+
+    $result = array();
+    // Traverse the array as PHP would have done.
+    while ($this->isValid) {
+      // Grab the row in the format specified above.
+      $result[] = $this->current();
+      $this->next();
+    }
+
+    // Reset the fetch parameters to the value stored using setFetchMode().
+    $this->fetchStyle = $this->defaultFetchStyle;
+    $this->fetchOptions = $this->defaultFetchOptions;
+    return $result;
+  }
+
+  public function fetchCol($index = 0) {
+    if (isset($this->columnNames[$index])) {
+      $column = $this->columnNames[$index];
+      $result = array();
+      // Traverse the array as PHP would have done.
+      while ($this->isValid) {
+        $current = current($this->data);
+        $result[] = $current[$this->columnNames[$index]];
+        $this->next();
+      }
+      return $result;
+    }
+    else {
+      return array();
+    }
+  }
+
+  public function fetchAllKeyed($key_index = 0, $value_index = 1) {
+    if (!isset($this->columnNames[$key_index]) || !isset($this->columnNames[$value_index]))
+      return array();
+
+    $key = $this->columnNames[$key_index];
+    $value = $this->columnNames[$value_index];
+
+    $result = array();
+    // Traverse the array as PHP would have done.
+    while ($this->isValid) {
+      $row = current($this->data);
+      $result[$row[$key]] = $row[$value];
+      $this->next();
+    }
+    return $result;
+  }
+
+  public function fetchAllAssoc($key, $fetch_style = PDO::FETCH_OBJ) {
+    $this->fetchStyle = $fetch_style;
+    $this->fetchOptions = $this->defaultFetchOptions;
+
+    $result = array();
+    // Traverse the array as PHP would have done.
+    while ($this->isValid) {
+      // Grab the row in its raw PDO::FETCH_ASSOC format.
+      $row = current($this->data);
+      // Grab the row in the format specified above.
+      $result_row = $this->current();
+      $result[$row[$key]] = $result_row;
+      $this->next();
+    }
+
+    // Reset the fetch parameters to the value stored using setFetchMode().
+    $this->fetchStyle = $this->defaultFetchStyle;
+    $this->fetchOptions = $this->defaultFetchOptions;
+    return $result;
+  }
+
+}
+
+/**
+ * @} End of "ingroup database".
+ */
+

=== added directory 'includes/database/sqlite'
=== added file 'includes/database/sqlite/database.inc'
--- includes/database/sqlite/database.inc	1970-01-01 00:00:00 +0000
+++ includes/database/sqlite/database.inc	2008-11-09 18:16:54 +0000
@@ -0,0 +1,220 @@
+<?php
+// $Id$
+
+/**
+ * @file
+ * Database interface code for SQLite embedded database engine.
+ */
+
+/**
+ * @ingroup database
+ * @{
+ */
+
+include_once DRUPAL_ROOT . '/includes/database/prefetch.inc';
+
+/**
+ * Specific SQLite implementation of DatabaseConnection.
+ */
+class DatabaseConnection_sqlite extends DatabaseConnection {
+  public function __construct(Array $connection_options = array()) {
+    // We don't need a specific PDOStatement class here, we simulate it below.
+    $connection_options['statement_class'] = FALSE;
+
+    parent::__construct('sqlite:'. $connection_options['database'], '', '', $connection_options);
+
+    $this->exec('PRAGMA encoding="UTF-8"');
+
+    // Create functions needed by SQLite.
+    $this->sqliteCreateFunction('if', array($this, 'sqlFunctionIf'));
+    $this->sqliteCreateFunction('greatest', array($this, 'sqlFunctionGreatest'));
+    $this->sqliteCreateFunction('pow', 'pow', 2);
+    $this->sqliteCreateFunction('length', 'strlen', 1);
+    $this->sqliteCreateFunction('concat', array($this, 'sqlFunctionConcat'));
+    $this->sqliteCreateFunction('substring', array($this, 'sqlFunctionSubstring'), 3);
+  }
+
+  /**
+   * SQLite compatibility implementation for the IF() SQL function.
+   */
+  public function sqlFunctionIf($condition, $expr1, $expr2 = NULL) {
+    return $condition ? $expr1 : $expr2;
+  }
+
+  /**
+   * SQLite compatibility implementation for the GREATEST() SQL function.
+   */
+  public function sqlFunctionGreatest() {
+    $args = func_get_args();
+    foreach ($args as $k => $v) {
+      if (is_null($v)) {
+        unset($args);
+      }
+    }
+    if (count($args)) {
+      return max($args);
+    }
+    else {
+      return NULL;
+    }
+  }
+
+  /**
+   * SQLite compatibility implementation for the CONCAT() SQL function.
+   */
+  public function sqlFunctionConcat() {
+    $args = func_get_args();
+    return implode('', $args);
+  }
+
+  /**
+   * SQLite compatibility implementation for the SUBSTRING() SQL function.
+   */
+  public function sqlFunctionSubstring($string, $from, $length) {
+    return substr($string, $from - 1, $length);
+  }
+
+  /**
+   * SQLite-specific implementation of DatabaseConnection::prepare().
+   *
+   * We don't use prepared statements at all at this stage. We just create
+   * a DatabaseStatement_sqlite object, that will create a PDOStatement
+   * using the semi-private PDOPrepare() method below.
+   */
+  public function prepare($query, Array $options = array()) {
+    return new DatabaseStatement_sqlite($this, $query, $options);
+  }
+
+  /**
+   * A private wrapper to call the parent prepare() implementation. DON'T EVER CALL IT.
+   *
+   * This should be private, but can't for technical reasons.
+   */
+  public function PDOPrepare($query, Array $options = array()) {
+    return parent::prepare($query, $options);
+  }
+
+  public function queryRange($query, Array $args, $from, $count, Array $options) {
+    // Backward compatibility hack, temporary.
+    $query = str_replace(array('%d' , '%f' , '%b' , "'%s'"), '?', $query);
+
+    return $this->query($query . ' LIMIT ' . $from . ', ' . $count, $args, $options);
+  }
+
+  public function queryTemporary($query, Array $args, $tablename, Array $options = array()) {
+    return $this->query(preg_replace('/^SELECT/i', 'CREATE TEMPORARY TABLE ' . $tablename . ' AS SELECT', $query), $args, $options);
+  }
+
+  public function driver() {
+    return 'sqlite';
+  }
+
+  public function databaseType() {
+    return 'sqlite';
+  }
+
+  public function supportsTransactions() {
+    return TRUE;
+  }
+
+  public function mapConditionOperator($operator) {
+    // We don't want to override any of the defaults.
+    return NULL;
+  }
+
+  protected function prepareQuery($query) {
+    // In makes no sense to use the static prepared statement cache here,
+    // because all the work in our implementation is done in
+    // DatabaseStatement_sqlite::execute() and cannot be cached.
+    return $this->prepare($this->prefixTables($query));
+  }
+
+  /**
+   * @todo Remove this as soon as db_rewrite_sql() has been exterminated.
+   */
+  public function distinctField($table, $field, $query) {
+    $field_to_select = 'DISTINCT(' . $table . '.' . $field . ')';
+    // (?<!text) is a negative look-behind (no need to rewrite queries that already use DISTINCT).
+    return preg_replace('/(SELECT.*)(?:' . $table . '\.|\s)(?<!DISTINCT\()(?<!DISTINCT\(' . $table . '\.)' . $field . '(.*FROM )/AUsi', '\1 ' . $field_to_select . '\2', $query);
+  }
+}
+
+/**
+ * Specific SQLite implementation of DatabaseConnection.
+ */
+class DatabaseStatement_sqlite extends DatabaseStatementPrefetch implements Iterator, DatabaseStatementInterface {
+
+  /**
+   * SQLite specific implementation of getStatement().
+   *
+   * The PDO SQLite layer doesn't replace numeric placeholders in queries correctly,
+   * and this makes numeric expressions (such as COUNT(*) >= :count) fail.
+   * We replace numeric placeholders in the query ourself to workaround that bug.
+   *
+   * See http://bugs.php.net/bug.php?id=45259 for more details.
+   */
+  protected function getStatement($query, &$args = array()) {
+    if (count($args)) {
+      // Check if $args is a simple numeric array.
+      if (range(0, count($args) - 1) === array_keys($args)) {
+        // In that case, we have unnamed placeholders.
+        $count = 0;
+        $new_args = array();
+        foreach ($args as $value) {
+          if (is_numeric($value)) {
+            $query = substr_replace($query, $value, strpos($query, '?'), 1);
+          }
+          else {
+            $placeholder = ':placeholder_' . $count++;
+            $query = substr_replace($query, $placeholder, strpos($query, '?'), 1);
+            $new_args[$placeholder] = $value;
+          }
+        }
+        $args = $new_args;
+      }
+      else {
+        // Else, this is using named placeholders.
+        foreach ($args as $placeholder => $value) {
+          if (is_numeric($value)) {
+            $query = str_replace($placeholder, $value, $query);
+            unset($args[$placeholder]);
+          }
+        }
+      }
+    }
+
+    return $this->dbh->PDOPrepare($query);
+  }
+
+  public function execute($args, $options) {
+    $return = parent::execute($args, $options);
+
+    // Post-process the data, by renaming the column names using the same convention
+    // as MySQL and PostgreSQL.
+    $rename_columns = array();
+    foreach ($this->columnNames as $k => $column) {
+      if (preg_match("/^.*\.(.*)$/", $column, $matches)) {
+        $rename_columns[$column] = $matches[1];
+        $this->columnNames[$k] = $matches[1];
+      }
+    }
+    if ($rename_columns) {
+      foreach ($this->data as $k => $row) {
+        foreach ($rename_columns as $old_column => $new_column) {
+          $this->data[$k][$new_column] = $this->data[$k][$old_column];
+          unset($this->data[$k][$old_column]);
+        }
+      }
+    }
+
+    // This is necessary to ensure that the array with start in a clean state.
+    reset($this->data);
+
+    return $return;
+  }
+
+}
+
+/**
+ * @} End of "ingroup database".
+ */

=== added file 'includes/database/sqlite/install.inc'
--- includes/database/sqlite/install.inc	1970-01-01 00:00:00 +0000
+++ includes/database/sqlite/install.inc	2008-11-09 18:16:09 +0000
@@ -0,0 +1,12 @@
+<?php
+// $Id$
+
+// SQLite specific install functions
+
+class DatabaseInstaller_sqlite extends DatabaseInstaller {
+  protected $pdoDriver = 'sqlite';
+  public function name() {
+    return 'SQLite';
+  }
+}
+

=== added file 'includes/database/sqlite/query.inc'
--- includes/database/sqlite/query.inc	1970-01-01 00:00:00 +0000
+++ includes/database/sqlite/query.inc	2008-11-09 18:16:09 +0000
@@ -0,0 +1,104 @@
+<?php
+// $Id $
+
+/**
+ * @ingroup database
+ * @{
+ */
+
+/**
+ * SQLite specific implementation of InsertQuery.
+ *
+ * We ignore all the default fields and use the clever SQLite syntax:
+ *   INSERT INTO table DEFAULT VALUES
+ * for degenerated "default only" queries.
+ */
+class InsertQuery_sqlite extends InsertQuery {
+
+  public function execute() {
+    if (count($this->insertFields)) {
+      return parent::execute();
+    }
+    else {
+      return $this->connection->query('INSERT INTO {'. $this->table .'} DEFAULT VALUES', array(), $this->queryOptions);
+    }
+  }
+
+  public function __toString() {
+    $placeholders = array_fill(0, count($this->insertFields), '?');
+    return 'INSERT INTO {'. $this->table .'} ('. implode(', ', $this->insertFields) .') VALUES ('. implode(', ', $placeholders) .')';
+  }
+
+}
+
+/**
+ * SQLite specific implementation of UpdateQuery.
+ *
+ * SQLite counts all the rows that match the conditions as modified, even if they
+ * will not be affected by the query. We workaround this by ensuring that
+ * we don't select those rows.
+ *
+ * A query like this one:
+ *   UPDATE test SET name = 'newname' WHERE tid = 1
+ * will become:
+ *   UPDATE test SET name = 'newname' WHERE tid = 1 AND name <> 'newname'
+ */
+class UpdateQuery_sqlite extends UpdateQuery {
+  
+  /**
+   * Helper function that remove the fields that are already in a condition.
+   *
+   * @param $fields
+   *   The fields.
+   * @param QueryConditionInterface $condition
+   *   A database condition.
+   */
+  protected function removeFieldsInCondition(&$fields, QueryConditionInterface $condition) {
+    foreach ($condition->conditions() as $child_condition) {
+      if ($child_condition['field'] instanceof QueryConditionInterface) {
+        $this->removeFieldsInCondition($fields, $child_condition['field']);
+      }
+      else {
+        unset($fields[$child_condition['field']]);
+      }
+    }
+  }
+
+  public function execute() {
+    // Get the fields use in the update query, and remove those that are already
+    // in the condition.
+    $fields = $this->expressionFields + $this->fields;
+    $this->removeFieldsInCondition($fields, $this->condition);
+
+    // Add the inverse of the fields to the condition.
+    $condition = db_or();
+    foreach ($fields as $field => $data) {
+      if (is_array($data)) {
+        // The field is an expression.
+        $condition->condition($field, $data['expression'], '<>');
+        // The IS NULL operator is badly managed by DatabaseCondition.
+        $condition->where($field . ' IS NULL');
+      }
+      else if (is_null($data)) {
+        // The field will be set to NULL.
+        // The IS NULL operator is badly managed by DatabaseCondition.
+        $condition->where($field . ' IS NOT NULL');
+      }
+      else {
+        $condition->condition($field, $data, '<>');
+        // The IS NULL operator is badly managed by DatabaseCondition.
+        $condition->where($field . ' IS NULL');
+      }
+    }
+    if (count($condition)) {
+      $condition->compile($this->connection);
+      $this->condition->where((string) $condition, $condition->arguments());
+    }
+    return parent::execute();
+  }
+
+}
+
+/**
+ * @} End of "ingroup database".
+ */

=== added file 'includes/database/sqlite/schema.inc'
--- includes/database/sqlite/schema.inc	1970-01-01 00:00:00 +0000
+++ includes/database/sqlite/schema.inc	2008-11-09 18:16:09 +0000
@@ -0,0 +1,524 @@
+<?php
+// $Id$
+
+/**
+ * @file
+ * Database schema code for SQLite databases.
+ */
+
+
+/**
+ * @ingroup schemaapi
+ * @{
+ */
+
+class DatabaseSchema_sqlite extends DatabaseSchema {
+
+  public function tableExists($table) {
+    return (bool) $this->connection->query("SELECT name FROM sqlite_master WHERE type = 'table' AND name LIKE '{" . $table . "}'", array(), array())->fetchField();
+  }
+
+  public function columnExists($table, $column) {
+    $schema = $this->introspectSchema($table);
+    return $schema['fields'][$column];
+  }
+
+  /**
+   * Generate SQL to create a new table from a Drupal schema definition.
+   *
+   * @param $name
+   *   The name of the table to create.
+   * @param $table
+   *   A Schema API table definition array.
+   * @return
+   *   An array of SQL statements to create the table.
+   */
+  public function createTableSql($name, $table) {
+    $sql = array();
+    $sql[] = "CREATE TABLE {". $name ."} (\n". $this->buildColsSql($name, $table) ."\n);\n";
+    return array_merge($sql, $this->createIndexSql($name, $table));
+  }
+
+  protected function createIndexSql($tablename, $schema) {
+    $sql = array();
+    if (!empty($schema['unique keys'])) {
+      foreach ($schema['unique keys'] as $key => $fields) {
+        $sql[] = 'CREATE UNIQUE INDEX {'. $tablename .'}_'. $key .' ON {'. $tablename .'} ('. $this->createKeySql($fields) ."); \n";
+      }
+    }
+    if (!empty($schema['indexes'])) {
+      foreach ($schema['indexes'] as $index => $fields) {
+        $sql[] = 'CREATE INDEX {'. $tablename .'}_'. $index .' ON {'. $tablename .'} ('. $this->createKeySql($fields) ."); \n";
+      }
+    }
+    return $sql;
+  }
+
+  protected function buildColsSql($tablename, $schema) {
+    $sql = "";
+
+    // Add the SQL statement for each field.
+    foreach ($schema['fields'] as $name => $field) {
+      if ($field['type'] == 'serial') {
+        if (isset($schema['primary key']) && ($key = array_search($name, $schema['primary key'])) !== false) {
+          unset($schema['primary key'][$key]);
+        }
+      }
+      $sql .= $this->createFieldSql($name, $this->processField($field)) .", \n";
+    }
+
+    // Process keys.
+    if (!empty($schema['primary key'])) {
+      $sql .= " PRIMARY KEY (". $this->createKeySql($schema['primary key']) ."), \n";
+    }
+
+    // Remove the last comma and space.
+    $sql = substr($sql, 0, -3);
+    return $sql;
+  }
+
+  protected function createKeySql($fields) {
+    $ret = array();
+    foreach ($fields as $field) {
+      if (is_array($field)) {
+        $ret[] = $field[0];
+      }
+      else {
+        $ret[] = $field;
+      }
+    }
+    return implode(', ', $ret);
+  }
+
+  /**
+   * Set database-engine specific properties for a field.
+   *
+   * @param $field
+   *   A field description array, as specified in the schema documentation.
+   */
+  protected function processField($field) {
+    if (!isset($field['size'])) {
+      $field['size'] = 'normal';
+    }
+    // Set the correct database-engine specific datatype.
+    if (!isset($field['sqlite_type'])) {
+      $map = db_type_map();
+      $field['sqlite_type'] = $map[$field['type'] .':'. $field['size']];
+    }
+
+    if ($field['type'] == 'serial') { // this should check if field is a primary key
+      $field['auto_increment'] = TRUE;
+    }
+
+    return $field;
+  }
+
+  /**
+  * Create an SQL string for a field to be used in table creation or alteration.
+  *
+  * Before passing a field out of a schema definition into this function it has
+  * to be processed by db_processField().
+  *
+  * @param $name
+  *    Name of the field.
+  * @param $spec
+  *    The field specification, as per the schema data structure format.
+  */
+  protected function createFieldSql($name, $spec) {
+    if (!empty($spec['auto_increment'])) {
+      $sql = "". $name ." INTEGER PRIMARY KEY AUTOINCREMENT";
+    }
+    else {
+      $sql = "". $name ." ". $spec['sqlite_type'];
+
+      if (isset($spec['length'])) {
+        $sql .= '('. $spec['length'] .')';
+      }
+
+      if (!empty($spec['not null'])) {
+        $sql .= ' NOT NULL';
+      }
+
+      if (isset($spec['default'])) {
+        if (is_string($spec['default'])) {
+          $spec['default'] = "'". $spec['default'] ."'";
+        }
+        $sql .= ' DEFAULT '. $spec['default'];
+      }
+
+      if (empty($spec['not null']) && !isset($spec['default'])) {
+        $sql .= ' DEFAULT NULL';
+      }
+    }
+    return $sql;
+  }
+
+  /**
+   * This maps a generic data type in combination with its data size
+   * to the engine-specific data type.
+   */
+  public function getFieldTypeMap() {
+    // Put :normal last so it gets preserved by array_flip.  This makes
+    // it much easier for modules (such as schema.module) to map
+    // database types back into schema types.
+    /*
+    a VARCHAR(10),
+    b NVARCHAR(15),
+    c TEXT,
+    d INTEGER,
+    e FLOAT,
+    f BOOLEAN,
+    g CLOB,
+    h BLOB,
+    i TIMESTAMP,
+    j NUMERIC(10,5)
+    k VARYING CHARACTER (24),
+    l NATIONAL VARYING CHARACTER(16)
+    */
+    $map = array(
+      'varchar:normal'  => 'VARCHAR',
+
+      'text:tiny'       => 'TEXT',
+      'text:small'      => 'TEXT',
+      'text:medium'     => 'TEXT',
+      'text:big'        => 'TEXT',
+      'text:normal'     => 'TEXT',
+
+      'serial:tiny'     => 'INTEGER',
+      'serial:small'    => 'INTEGER',
+      'serial:medium'   => 'INTEGER',
+      'serial:big'      => 'INTEGER',
+      'serial:normal'   => 'INTEGER',
+
+      'int:tiny'        => 'INTEGER',
+      'int:small'       => 'INTEGER',
+      'int:medium'      => 'INTEGER',
+      'int:big'         => 'INTEGER',
+      'int:normal'      => 'INTEGER',
+
+      'float:tiny'      => 'FLOAT',
+      'float:small'     => 'FLOAT',
+      'float:medium'    => 'FLOAT',
+      'float:big'       => 'FLOAT',
+      'float:normal'    => 'FLOAT',
+
+      'numeric:normal'  => 'NUMERIC',
+
+      'blob:big'        => 'BLOB',
+      'blob:normal'     => 'BLOB',
+
+      'datetime:normal' => 'TIMESTAMP',
+    );
+    return $map;
+  }
+
+  /**
+  * Rename a table.
+  *
+  * @param $ret
+  *   Array to which query results will be added.
+  * @param $table
+  *   The table to be renamed.
+  * @param $new_name
+  *   The new name for the table.
+  */
+  public function renameTable(&$ret, $table, $new_name) {
+    $ret[] = update_sql('ALTER TABLE {'. $table .'} RENAME TO {'. $new_name .'}');
+  }
+
+  /**
+   * Drop a table.
+   *
+   * @param $ret
+   *   Array to which query results will be added.
+   * @param $table
+   *   The table to be dropped.
+   */
+  public function dropTable(&$ret, $table) {
+    $ret[] = update_sql('DROP TABLE {' . $table . '}');
+  }
+
+  /**
+   * Add a new field to a table.
+   *
+   * @param $ret
+   *   Array to which query results will be added.
+   * @param $table
+   *   Name of the table to be altered.
+   * @param $field
+   *   Name of the field to be added.
+   * @param $spec
+   *   The field specification array, as taken from a schema definition
+   */
+  public function addField(&$ret, $table, $field, $spec, $keys_new = array()) {
+    // TODO: keys_new
+    $query = 'ALTER TABLE {'. $table .'} ADD ';
+    $query .= $this->createFieldSql($field, $this->processField($spec));
+    $ret[] = update_sql($query);
+  }
+
+  /**
+   * Recreate a table with a new schema with the old content.
+   *
+   * @param $ret
+   *   Array to which query results will be added.
+   * @param $table
+   *   Name of the table to be altered.
+   * @param $new_schema
+   *   The new schema array for the table.
+   */
+  protected function createNewTableWithOldData(&$ret, $table, $new_schema) {
+    $i = 0;
+    do {
+      $new_table = $table . '_' . $i++;
+    } while ($this->tableExists($new_table));
+    $this->createTable($ret, $new_table, $new_schema);
+    $fields = implode(', ', array_keys($new_schema['fields']));
+    $ret[] = update_sql('INSERT INTO {'. $new_table ."} ($fields) SELECT $fields FROM {". $table . '}');
+    $old_count = db_query('SELECT COUNT(*) FROM {'. $table .'}')->fetchField;
+    $new_count = db_query('SELECT COUNT(*) FROM {'. $new_table .'}')->fetchField;
+    if ($old_count == $new_count) {
+      do {
+        $temp_table = $table . '_' . $i++;
+      } while ($this->tableExists($temp_table));
+      $this->renameTable($ret, $table, $temp_table);
+      $this->renameTable($ret, $new_table, $table);
+      $this->dropTable($ret, $temp_table);
+    }
+  }
+
+  protected function introspectSchema($table) {
+    $schema = array();
+    foreach (db_query("PRAGMA table_info('{" . $table . "}')") as $row) {
+      $schema['fields'][$row->name] = array(
+        'type' => $row->type,
+        'not null' => !empty($row->notnull),
+        'default' => trim($row->dflt_value, "'"),
+      );
+      if ($row->pk) {
+        $schema['primary key'][] = $row->name;
+      }
+    }
+    $indexes = array();
+    foreach (db_query("PRAGMA index_list('{" . $table . "}')") as $row) {
+      if (strpos($row->name, 'sqlite_autoindex_') !== 0) {
+        $indexes[] = array(
+          'schema_key' => $row->unique ? 'unique keys' : 'indexes',
+          'name' => $row->name,
+        );
+      }
+    }
+    $n = strlen($table) + 1;
+    foreach ($indexes as $index) {
+      $name = $index['name'];
+      $index_name = substr($name, $n);
+      foreach (db_query("PRAGMA index_info('$name')") as $row) {
+        $schema[$index['schema_key']][$index_name][] = $row->name;
+      }
+    }
+    return $schema;
+  }
+
+  /**
+   * Drop a field.
+   *
+   * @param $ret
+   *   Array to which query results will be added.
+   * @param $table
+   *   The table to be altered.
+   * @param $field
+   *   The field to be dropped.
+   */
+  public function dropField(&$ret, $table, $field) {
+    $new_schema = $this->introspectSchema($table);
+    unset($new_schema['fields'][$field]);
+    foreach ($new_schema['indexes'] as $index => $fields) {
+      foreach ($fields as $key => $field_name) {
+        if ($field_name == $field) {
+          unset($new_schema['indexes'][$index][$key]);
+        }
+      }
+      if (empty($new_schema['indexes'][$index])) {
+        unset($new_schema['indexes'][$index]);
+      }
+    }
+    $this->createNewTableWithOldData($ret, $table, $new_schema);
+  }
+
+  /**
+   * Change a field definition.
+   *
+   * @param $ret
+   *   Array to which query results will be added.
+   * @param $table
+   *   Name of the table.
+   * @param $field
+   *   Name of the field to change.
+   * @param $field_new
+   *   New name for the field (set to the same as $field if you don't want to change the name).
+   * @param $spec
+   *   The field specification for the new field.
+   * @param $keys_new
+   *   Optional keys and indexes specification to be created on the
+   *   table along with changing the field. The format is the same as a
+   *   table specification but without the 'fields' element.
+   */
+  public function changeField(&$ret, $table, $field, $field_new, $spec, $keys_new = array()) {
+    $new_schema = $this->introspectSchema($table);
+    unset($new_schema['fields'][$field]);
+    $new_schema['fields'][$field_new] = $spec;
+    if (isset($keys_new['primary keys'])) {
+      $new_schema['primary keys'] = $keys_new['primary keys'];
+      $keys_new['primary keys'];
+    }
+    foreach (array('unique keys', 'indexes') as $k) {
+      if (!empty($keys_new[$k])) {
+        $new_schema[$k] = $keys_new[$k] + $new_schema[$k];
+      }
+    }
+    $this->createNewTableWithOldData($ret, $table, $new_schema);
+  }
+
+  /**
+   * Add an index.
+   *
+   * @param $ret
+   *   Array to which query results will be added.
+   * @param $table
+   *   The table to be altered.
+   * @param $name
+   *   The name of the index.
+   * @param $fields
+   *   An array of field names.
+   */
+  public function addIndex(&$ret, $table, $name, $fields) {
+    $schema['indexes'][$name] = $fields;
+    $ret[] = update_sql($this->createIndexSql($table, $schema));
+  }
+
+  /**
+   * Drop an index.
+   *
+   * @param $ret
+   *   Array to which query results will be added.
+   * @param $table
+   *   The table to be altered.
+   * @param $name
+   *   The name of the index.
+   */
+  public function dropIndex(&$ret, $table, $name) {
+    $ret[] = update_sql('DROP INDEX ' . '{' . $table . '}_' . $name);
+  }
+
+  /**
+   * Add a unique key.
+   *
+   * @param $ret
+   *   Array to which query results will be added.
+   * @param $table
+   *   The table to be altered.
+   * @param $name
+   *   The name of the key.
+   * @param $fields
+   *   An array of field names.
+   */
+  public function addUniqueKey(&$ret, $table, $name, $fields) {
+    $schema['unique keys'][$name] = $fields;
+    $ret[] = update_sql($this->createIndexSql($table, $schema));
+
+  }
+
+  /**
+   * Drop a unique key.
+   *
+   * @param $ret
+   *   Array to which query results will be added.
+   * @param $table
+   *   The table to be altered.
+   * @param $name
+   *   The name of the key.
+   */
+  public function dropUniqueKey(&$ret, $table, $name) {
+    $ret[] = update_sql('DROP INDEX ' . '{' . $table . '}_' . $name);
+  }
+
+  /**
+   * Add a primary key.
+   *
+   * @param $ret
+   *   Array to which query results will be added.
+   * @param $table
+   *   The table to be altered.
+   * @param $fields
+   *   Fields for the primary key.
+   */
+  public function addPrimaryKey(&$ret, $table, $fields) {
+    $new_schema = $this->introspectSchema($table);
+    $new_schema['primary key'] = $fields;
+    $this->createNewTableWithOldData($ret, $table, $new_schema);
+  }
+
+  /**
+   * Drop the primary key.
+   *
+   * @param $ret
+   *   Array to which query results will be added.
+   * @param $table
+   *   The table to be altered.
+   */
+  public function dropPrimaryKey(&$ret, $table) {
+    $new_schema = $this->introspectSchema($table);
+    unset($new_schema['primary key']);
+    $this->createNewTableWithOldData($ret, $table, $new_schema);
+  }
+
+  /**
+   * Set the default value for a field.
+   *
+   * @param $ret
+   *   Array to which query results will be added.
+   * @param $table
+   *   The table to be altered.
+   * @param $field
+   *   The field to be altered.
+   * @param $default
+   *   Default value to be set. NULL for 'default NULL'.
+   */
+  public function fieldSetDefault(&$ret, $table, $field, $default) {
+    $new_schema = $this->introspectSchema($table);
+    $new_schema['fields'][$field]['default'] = $default;
+    $this->createNewTableWithOldData($ret, $table, $new_schema);
+  }
+
+  /**
+   * Set a field to have no default value.
+   *
+   * @param $ret
+   *   Array to which query results will be added.
+   * @param $table
+   *   The table to be altered.
+   * @param $field
+   *   The field to be altered.
+   */
+  public function fieldSetNoDefault(&$ret, $table, $field) {
+    $new_schema = $this->introspectSchema($table);
+    unset($new_schema['fields'][$field]['default']);
+    $this->createNewTableWithOldData($ret, $table, $new_schema);
+  }
+
+  /**
+   * Find all tables that are like the specified base table name.
+   *
+   * @param $table_expression
+   *   An SQL expression, for example "simpletest%" (without the quotes).
+   *   BEWARE: this is not prefixed, the caller should take care of that.
+   * @return
+   *   Array, both the keys and the values are the matching tables.
+   */
+  public function findTables($table_expression) {
+    $result = db_query("SELECT name FROM sqlite_master WHERE name LIKE :table_name", array(
+      ':table_name' => $table_expression,
+    ));
+    return $result->fetchAllKeyed(0, 0);
+  }
+}

=== modified file 'install.php'
--- install.php	2008-11-08 22:04:03 +0000
+++ install.php	2008-11-09 18:16:09 +0000
@@ -271,7 +271,6 @@ function install_settings_form(&$form_st
       '#default_value' => empty($database['username']) ? '' : $database['username'],
       '#size' => 45,
       '#maxlength' => 45,
-      '#required' => TRUE,
     );
 
     // Database username

=== modified file 'modules/aggregator/aggregator.module'
--- modules/aggregator/aggregator.module	2008-11-01 19:51:06 +0000
+++ modules/aggregator/aggregator.module	2008-11-09 18:16:09 +0000
@@ -477,8 +477,8 @@ function aggregator_save_feed($edit) {
       foreach ($edit['category'] as $cid => $value) {
         if ($value) {
           db_merge('aggregator_category_feed')
+            ->key(array('fid' => $edit['fid']))
             ->fields(array(
-              'fid' => $edit['fid'],
               'cid' => $cid,
             ))
             ->execute();

=== modified file 'modules/simpletest/tests/common.test'
--- modules/simpletest/tests/common.test	2008-11-01 21:21:34 +0000
+++ modules/simpletest/tests/common.test	2008-11-09 18:16:09 +0000
@@ -441,7 +441,7 @@ class DrupalErrorHandlerUnitTest extends
     $this->assertErrorMessage('Exception', 'system_test.module', 'system_test_trigger_exception()', 'Drupal is awesome');
 
     $this->drupalGet('system-test/trigger-pdo-exception');
-    $this->assertErrorMessage('PDOException', 'system_test.module', 'system_test_trigger_pdo_exception()', 'Base table or view not found');
+    $this->assertErrorMessage('PDOException', 'system_test.module', 'system_test_trigger_pdo_exception()', 'SQLSTATE');
   }
 
   /**

