diff --git includes/database/database.inc includes/database/database.inc
index c85e35a..94517f0 100644
--- includes/database/database.inc
+++ includes/database/database.inc
@@ -669,7 +669,7 @@ abstract class DatabaseConnection extends PDO {
   }
 
   /**
-   * Prepares and returns a SELECT query object with the specified ID.
+   * Prepares and returns a SELECT query object.
    *
    * @param $table
    *   The base table for this query, that is, the first table in the FROM
@@ -693,7 +693,7 @@ abstract class DatabaseConnection extends PDO {
   }
 
   /**
-   * Prepares and returns an INSERT query object with the specified ID.
+   * Prepares and returns an INSERT query object.
    *
    * @param $options
    *   An array of options on the query.
@@ -709,7 +709,7 @@ abstract class DatabaseConnection extends PDO {
   }
 
   /**
-   * Prepares and returns a MERGE query object with the specified ID.
+   * Prepares and returns a MERGE query object.
    *
    * @param $options
    *   An array of options on the query.
@@ -726,7 +726,7 @@ abstract class DatabaseConnection extends PDO {
 
 
   /**
-   * Prepares and returns an UPDATE query object with the specified ID.
+   * Prepares and returns an UPDATE query object.
    *
    * @param $options
    *   An array of options on the query.
@@ -742,7 +742,7 @@ abstract class DatabaseConnection extends PDO {
   }
 
   /**
-   * Prepares and returns a DELETE query object with the specified ID.
+   * Prepares and returns a DELETE query object.
    *
    * @param $options
    *   An array of options on the query.
