summaryrefslogtreecommitdiff
path: root/includes/database
diff options
context:
space:
mode:
authorAngie Byron <webchick@24967.no-reply.drupal.org>2010-11-30 07:16:24 +0000
committerAngie Byron <webchick@24967.no-reply.drupal.org>2010-11-30 07:16:24 +0000
commit732b57d10d0b344510e35d6223f36eecf62c0821 (patch)
tree5c7d6386c2afa548d34bc5cb3d5ff1c550945e8b /includes/database
parent35d221ea41921ec7be1a1a0523166b3947329074 (diff)
downloadbrdo-732b57d10d0b344510e35d6223f36eecf62c0821.tar.gz
brdo-732b57d10d0b344510e35d6223f36eecf62c0821.tar.bz2
#984896 by Crell: Remove wrong references to 'query ID' in DBTNG docs.
Diffstat (limited to 'includes/database')
-rw-r--r--includes/database/database.inc10
1 files changed, 5 insertions, 5 deletions
diff --git a/includes/database/database.inc b/includes/database/database.inc
index c85e35a10..94517f002 100644
--- a/includes/database/database.inc
+++ b/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.