MediaWiki
REL1_24
|
Public Member Functions | |
addIdentifierQuotes ($s) | |
addQuotes ($s) | |
affectedRows () | |
buildConcat ($stringList) | |
buildGroupConcatField ($delim, $table, $field, $conds= '', $join_conds=array()) | |
Build a GROUP_CONCAT or equivalent statement for a query. | |
cascadingDeletes () | |
Returns true if this database supports (and uses) cascading deletes. | |
cleanupTriggers () | |
Returns true if this database supports (and uses) triggers (e.g. | |
dataSeek ($res, $row) | |
delete ($table, $conds, $fname=__METHOD__) | |
DELETE query wrapper. | |
deleteJoin ($delTable, $joinTable, $delVar, $joinVar, $conds, $fname=__METHOD__) | |
DELETE where the condition is a join. | |
estimateRowCount ($table, $vars= '*', $conds= '', $fname=__METHOD__, $options=array()) | |
Estimate rows in dataset Returns estimated count, based on SHOWPLAN_ALL output This is not necessarily an accurate estimate, so use sparingly Returns -1 if count cannot be found Takes same arguments as Database::select() | |
fetchObject ($res) | |
fetchRow ($res) | |
fieldExists ($table, $field, $fname=__METHOD__) | |
Query whether a given column exists in the mediawiki schema. | |
fieldInfo ($table, $field) | |
mysql_fetch_field() wrapper Returns false if the field doesn't exist | |
fieldName ($res, $n) | |
freeResult ($res) | |
Free a result object returned by query() or select(). | |
functionalIndexes () | |
Returns true if this database can use functional indexes. | |
getSearchEngine () | |
getServerVersion () | |
getSoftwareLink () | |
getType () | |
Get the type of the DBMS, as it appears in $wgDBtype. | |
implicitGroupby () | |
Returns true if this database does an implicit sort when doing GROUP BY. | |
implicitOrderby () | |
Returns true if this database does an implicit order by when the column has an index For example: SELECT page_title FROM page LIMIT 1. | |
indexInfo ($table, $index, $fname=__METHOD__) | |
Returns information about an index If errors are explicitly ignored, returns NULL on failure. | |
insert ($table, $arrToInsert, $fname=__METHOD__, $options=array()) | |
INSERT wrapper, inserts an array into a table. | |
insertId () | |
This must be called after nextSequenceVal. | |
insertSelect ($destTable, $srcTable, $varMap, $conds, $fname=__METHOD__, $insertOptions=array(), $selectOptions=array()) | |
INSERT SELECT wrapper $varMap must be an associative array of the form array( 'dest1' => 'source1', ...) Source items may be literals rather than field names, but strings should be quoted with Database::addQuotes(). | |
isQuotedIdentifier ($name) | |
lastErrno () | |
lastError () | |
limitResult ($sql, $limit, $offset=false) | |
Construct a LIMIT query with optional offset This is used for query pages. | |
LimitToTopN ($sql) | |
If there is a limit clause, parse it, strip it, and pass the remaining SQL through limitResult() with the appropriate parameters. | |
makeList ($a, $mode=LIST_COMMA, $binaryColumns=array()) | |
Makes an encoded list of strings from an array. | |
makeSelectOptions ($options) | |
numFields ($res) | |
numRows ($res) | |
open ($server, $user, $password, $dbName) | |
Usually aborts on failure. | |
prepareStatements ($value=null) | |
Called in the installer and updater. | |
realTableName ($name, $format= 'quoted') | |
call this instead of tableName() in the updater when renaming tables | |
realTimestamps () | |
Returns true if this database uses timestamps rather than integers. | |
resultObject ($result) | |
scrollableCursor ($value=null) | |
Called in the installer and updater. | |
select ($table, $vars, $conds= '', $fname=__METHOD__, $options=array(), $join_conds=array()) | |
SELECT wrapper. | |
selectDB ($db) | |
selectSQLText ($table, $vars, $conds= '', $fname=__METHOD__, $options=array(), $join_conds=array()) | |
SELECT wrapper. | |
strencode ($s) | |
strictIPs () | |
Returns true if this database is strict about what can be put into an IP field. | |
tableExists ($table, $fname=__METHOD__) | |
tableName ($name, $format= 'quoted') | |
textFieldSize ($table, $field) | |
unionSupportsOrderAndLimit () | |
Returns true if current database backend supports ORDER BY or LIMIT for separate subqueries within the UNION construct. | |
update ($table, $values, $conds, $fname=__METHOD__, $options=array()) | |
UPDATE wrapper. | |
Protected Member Functions | |
closeConnection () | |
Closes a database connection, if it is open Returns success, true if already closed. | |
doBegin ($fname=__METHOD__) | |
Begin a transaction, committing any previously open transaction. | |
doCommit ($fname=__METHOD__) | |
End a transaction. | |
doQuery ($sql) | |
doRollback ($fname=__METHOD__) | |
Rollback a transaction. | |
Protected Attributes | |
$mAffectedRows = null | |
$mBinaryColumnCache = null | |
$mBitColumnCache = null | |
$mIgnoreDupKeyErrors = false | |
$mInsertId = null | |
$mLastResult = null | |
$mPort | |
$mPrepareStatements = true | |
$mScrollableCursor = true | |
$mSubqueryId = 0 | |
Private Member Functions | |
escapeIdentifier ($identifier) | |
Escapes a identifier for use inm SQL. | |
formatError ($err) | |
getBinaryColumns ($table) | |
Returns an associative array for fields that are of type varbinary, binary, or image $table can be either a raw table name or passed through tableName() first. | |
getBitColumns ($table) | |
populateColumnCaches () |
Definition at line 31 of file DatabaseMssql.php.
string | $s |
Reimplemented from DatabaseBase.
Definition at line 1154 of file DatabaseMssql.php.
References $s.
DatabaseMssql::addQuotes | ( | $ | s | ) |
string | $s |
Reimplemented from DatabaseBase.
Definition at line 1134 of file DatabaseMssql.php.
Referenced by insert(), and makeList().
DatabaseMssql::buildConcat | ( | $ | stringList | ) |
array | $stringList |
Reimplemented from DatabaseBase.
Definition at line 1226 of file DatabaseMssql.php.
DatabaseMssql::buildGroupConcatField | ( | $ | delim, |
$ | table, | ||
$ | field, | ||
$ | conds = '' , |
||
$ | join_conds = array() |
||
) |
Build a GROUP_CONCAT or equivalent statement for a query.
MS SQL doesn't have GROUP_CONCAT so we emulate it with other stuff (and boy is it nasty)
This is useful for combining a field for several rows into a single string. NULL values will not appear in the output, duplicated values will appear, and the resulting delimiter-separated values have no defined sort order. Code using the results may need to use the PHP unique() or sort() methods.
string | $delim | Glue to bind the results together |
string | array | $table | Table name |
string | $field | Field name |
string | array | $conds | Conditions |
string | array | $join_conds | Join conditions |
Reimplemented from DatabaseBase.
Definition at line 1247 of file DatabaseMssql.php.
References $conds, array(), and selectSQLText().
Returns true if this database supports (and uses) cascading deletes.
Reimplemented from DatabaseBase.
Definition at line 44 of file DatabaseMssql.php.
Returns true if this database supports (and uses) triggers (e.g.
on the page table)
Reimplemented from DatabaseBase.
Definition at line 48 of file DatabaseMssql.php.
DatabaseMssql::closeConnection | ( | ) | [protected] |
Closes a database connection, if it is open Returns success, true if already closed.
Reimplemented from DatabaseBase.
Definition at line 140 of file DatabaseMssql.php.
DatabaseMssql::dataSeek | ( | $ | res, |
$ | row | ||
) |
MssqlResultWrapper | $res | |
int | $row |
Implements DatabaseType.
Definition at line 321 of file DatabaseMssql.php.
References $res.
DatabaseMssql::delete | ( | $ | table, |
$ | conds, | ||
$ | fname = __METHOD__ |
||
) |
DELETE query wrapper.
array | $table | Table name |
string | array | $conds | Array of conditions. See $conds in DatabaseBase::select() for the format. Use $conds == "*" to delete all rows |
string | $fname | Name of the calling function |
DBUnexpectedError |
Reimplemented from DatabaseBase.
Definition at line 481 of file DatabaseMssql.php.
DatabaseMssql::deleteJoin | ( | $ | delTable, |
$ | joinTable, | ||
$ | delVar, | ||
$ | joinVar, | ||
$ | conds, | ||
$ | fname = __METHOD__ |
||
) |
DELETE where the condition is a join.
MySQL overrides this to use a multi-table DELETE syntax, in other databases we use sub-selects
For safety, an empty $conds will not delete everything. If you want to delete all rows where the join condition matches, set $conds='*'.
DO NOT put the join condition in $conds.
string | $delTable | The table to delete from. |
string | $joinTable | The other table. |
string | $delVar | The variable to join on, in the first table. |
string | $joinVar | The variable to join on, in the second table. |
array | $conds | Condition array of field names mapped to variables, ANDed together in the WHERE clause |
string | $fname | Calling function name (use __METHOD__) for logs/profiling |
DBUnexpectedError |
Reimplemented from DatabaseBase.
Definition at line 468 of file DatabaseMssql.php.
DatabaseMssql::doBegin | ( | $ | fname = __METHOD__ | ) | [protected] |
Begin a transaction, committing any previously open transaction.
string | $fname |
Reimplemented from DatabaseBase.
Definition at line 1072 of file DatabaseMssql.php.
DatabaseMssql::doCommit | ( | $ | fname = __METHOD__ | ) | [protected] |
End a transaction.
string | $fname |
Reimplemented from DatabaseBase.
Definition at line 1081 of file DatabaseMssql.php.
DatabaseMssql::doQuery | ( | $ | sql | ) | [protected] |
string | $sql |
DBUnexpectedError |
Reimplemented from DatabaseBase.
Definition at line 166 of file DatabaseMssql.php.
References $matches, $success, array(), as, DatabaseBase\debug(), LimitToTopN(), and wfDebug().
Referenced by insert().
DatabaseMssql::doRollback | ( | $ | fname = __METHOD__ | ) | [protected] |
Rollback a transaction.
No-op on non-transactional databases.
string | $fname |
Reimplemented from DatabaseBase.
Definition at line 1091 of file DatabaseMssql.php.
DatabaseMssql::escapeIdentifier | ( | $ | identifier | ) | [private] |
Escapes a identifier for use inm SQL.
Throws an exception if it is invalid. Reference: http://msdn.microsoft.com/en-us/library/aa224033%28v=SQL.80%29.aspx
string | $identifier |
MWException |
Definition at line 1104 of file DatabaseMssql.php.
DatabaseMssql::estimateRowCount | ( | $ | table, |
$ | vars = '*' , |
||
$ | conds = '' , |
||
$ | fname = __METHOD__ , |
||
$ | options = array() |
||
) |
Estimate rows in dataset Returns estimated count, based on SHOWPLAN_ALL output This is not necessarily an accurate estimate, so use sparingly Returns -1 if count cannot be found Takes same arguments as Database::select()
string | $table | |
string | $vars | |
string | $conds | |
string | $fname | |
array | $options |
Reimplemented from DatabaseBase.
Definition at line 505 of file DatabaseMssql.php.
References $conds, $fname, $options, $res, $vars, fetchRow(), and select().
DatabaseMssql::fetchObject | ( | $ | res | ) |
MssqlResultWrapper | $res |
Implements DatabaseType.
Definition at line 257 of file DatabaseMssql.php.
References $res.
DatabaseMssql::fetchRow | ( | $ | res | ) |
MssqlResultWrapper | $res |
Implements DatabaseType.
Definition at line 266 of file DatabaseMssql.php.
References $res.
Referenced by estimateRowCount(), and textFieldSize().
DatabaseMssql::fieldExists | ( | $ | table, |
$ | field, | ||
$ | fname = __METHOD__ |
||
) |
Query whether a given column exists in the mediawiki schema.
string | $table | |
string | $field | |
string | $fname |
Reimplemented from DatabaseBase.
Definition at line 1029 of file DatabaseMssql.php.
References $res, list, DatabaseBase\query(), tableName(), and wfDebug().
DatabaseMssql::fieldInfo | ( | $ | table, |
$ | field | ||
) |
mysql_fetch_field() wrapper Returns false if the field doesn't exist
string | $table | Table name |
string | $field | Field name |
Implements DatabaseType.
Definition at line 1048 of file DatabaseMssql.php.
References $res, list, DatabaseBase\query(), tableName(), and wfDebug().
DatabaseMssql::fieldName | ( | $ | res, |
$ | n | ||
) |
mixed | $res | |
int | $n |
Implements DatabaseType.
Definition at line 299 of file DatabaseMssql.php.
DatabaseMssql::formatError | ( | $ | err | ) | [private] |
array | $err |
Definition at line 346 of file DatabaseMssql.php.
Referenced by lastError().
DatabaseMssql::freeResult | ( | $ | res | ) |
Free a result object returned by query() or select().
It's usually not necessary to call this, just use unset() or let the variable holding the result object go out of scope.
mixed | $res | A SQL result |
Reimplemented from DatabaseBase.
Definition at line 245 of file DatabaseMssql.php.
References $res.
Returns true if this database can use functional indexes.
Reimplemented from DatabaseBase.
Definition at line 68 of file DatabaseMssql.php.
DatabaseMssql::getBinaryColumns | ( | $ | table | ) | [private] |
Returns an associative array for fields that are of type varbinary, binary, or image $table can be either a raw table name or passed through tableName() first.
string | $table |
Definition at line 1275 of file DatabaseMssql.php.
References array(), and populateColumnCaches().
DatabaseMssql::getBitColumns | ( | $ | table | ) | [private] |
string | $table |
Definition at line 1292 of file DatabaseMssql.php.
References array(), and populateColumnCaches().
Referenced by selectSQLText().
Implements DatabaseType.
Definition at line 982 of file DatabaseMssql.php.
Implements DatabaseType.
Definition at line 975 of file DatabaseMssql.php.
Get the type of the DBMS, as it appears in $wgDBtype.
Implements DatabaseType.
Definition at line 1218 of file DatabaseMssql.php.
Returns true if this database does an implicit sort when doing GROUP BY.
Reimplemented from DatabaseBase.
Definition at line 60 of file DatabaseMssql.php.
Returns true if this database does an implicit order by when the column has an index For example: SELECT page_title FROM page LIMIT 1.
Reimplemented from DatabaseBase.
Definition at line 64 of file DatabaseMssql.php.
DatabaseMssql::indexInfo | ( | $ | table, |
$ | index, | ||
$ | fname = __METHOD__ |
||
) |
Returns information about an index If errors are explicitly ignored, returns NULL on failure.
string | $table | |
string | $index | |
string | $fname |
Implements DatabaseType.
Definition at line 533 of file DatabaseMssql.php.
References $fname, $res, $result, array(), as, empty, and DatabaseBase\query().
DatabaseMssql::insert | ( | $ | table, |
$ | arrToInsert, | ||
$ | fname = __METHOD__ , |
||
$ | options = array() |
||
) |
INSERT wrapper, inserts an array into a table.
$arrToInsert may be a single associative array, or an array of these with numeric keys, for multi-row insert.
Usually aborts on failure If errors are explicitly ignored, returns success
string | $table | |
array | $arrToInsert | |
string | $fname | |
array | $options |
DBQueryError |
Reimplemented from DatabaseBase.
Definition at line 580 of file DatabaseMssql.php.
References $e, $key, $keys, $options, $res, $ret, $value, addQuotes(), array(), as, doQuery(), getBinaryColumns(), DatabaseBase\query(), and tableName().
This must be called after nextSequenceVal.
Implements DatabaseType.
Definition at line 312 of file DatabaseMssql.php.
DatabaseMssql::insertSelect | ( | $ | destTable, |
$ | srcTable, | ||
$ | varMap, | ||
$ | conds, | ||
$ | fname = __METHOD__ , |
||
$ | insertOptions = array() , |
||
$ | selectOptions = array() |
||
) |
INSERT SELECT wrapper $varMap must be an associative array of the form array( 'dest1' => 'source1', ...) Source items may be literals rather than field names, but strings should be quoted with Database::addQuotes().
string | $destTable | |
array | string | $srcTable | May be an array of tables. |
array | $varMap | |
array | $conds | May be "*" to copy the whole table. |
string | $fname | |
array | $insertOptions | |
array | $selectOptions |
DBQueryError |
Reimplemented from DatabaseBase.
Definition at line 719 of file DatabaseMssql.php.
DatabaseMssql::isQuotedIdentifier | ( | $ | name | ) |
string | $name |
Reimplemented from DatabaseBase.
Definition at line 1163 of file DatabaseMssql.php.
References $name.
Implements DatabaseType.
Definition at line 328 of file DatabaseMssql.php.
References as, and formatError().
Referenced by open().
DatabaseMssql::limitResult | ( | $ | sql, |
$ | limit, | ||
$ | offset = false |
||
) |
Construct a LIMIT query with optional offset This is used for query pages.
string | $sql | SQL query we will append the limit too |
int | $limit | The SQL limit |
bool | int | $offset | The SQL offset (default false) |
Reimplemented from DatabaseBase.
Definition at line 897 of file DatabaseMssql.php.
References $last, $limit, and array().
Referenced by LimitToTopN().
DatabaseMssql::LimitToTopN | ( | $ | sql | ) |
If there is a limit clause, parse it, strip it, and pass the remaining SQL through limitResult() with the appropriate parameters.
Not the prettiest solution, but better than building a whole new parser. This exists becase there are still too many extensions that don't use dynamic sql generation.
string | $sql |
Definition at line 952 of file DatabaseMssql.php.
References $matches, and limitResult().
Referenced by doQuery().
DatabaseMssql::makeList | ( | $ | a, |
$ | mode = LIST_COMMA , |
||
$ | binaryColumns = array() |
||
) |
Makes an encoded list of strings from an array.
array | $a | Containing the data |
int | $mode | Constant
|
array | $binaryColumns | Contains a list of column names that are binary types This is a custom parameter only present for MS SQL. |
MWException|DBUnexpectedError |
Definition at line 803 of file DatabaseMssql.php.
References $value, addQuotes(), and as.
Referenced by update().
DatabaseMssql::makeSelectOptions | ( | $ | options | ) |
array | $options | An associative array of options to be turned into an SQL query, valid keys are listed in the function. |
Reimplemented from DatabaseBase.
Definition at line 1186 of file DatabaseMssql.php.
References $key, $options, array(), as, DatabaseBase\makeGroupByWithHaving(), and DatabaseBase\makeOrderBy().
DatabaseMssql::numFields | ( | $ | res | ) |
mixed | $res |
Implements DatabaseType.
Definition at line 286 of file DatabaseMssql.php.
References $res.
DatabaseMssql::numRows | ( | $ | res | ) |
mixed | $res |
Implements DatabaseType.
Definition at line 274 of file DatabaseMssql.php.
References $res.
DatabaseMssql::open | ( | $ | server, |
$ | user, | ||
$ | password, | ||
$ | dbName | ||
) |
Usually aborts on failure.
string | $server | |
string | $user | |
string | $password | |
string | $dbName |
DBConnectionError |
Implements DatabaseType.
Definition at line 85 of file DatabaseMssql.php.
References $user, array(), DatabaseBase\close(), global, lastError(), wfRestoreWarnings(), and wfSuppressWarnings().
DatabaseMssql::populateColumnCaches | ( | ) | [private] |
Definition at line 1305 of file DatabaseMssql.php.
References $res, array(), as, and select().
Referenced by getBinaryColumns(), and getBitColumns().
DatabaseMssql::prepareStatements | ( | $ | value = null | ) |
Called in the installer and updater.
Probably doesn't need to be called anywhere else in the codebase.
bool | null | $value |
Definition at line 1364 of file DatabaseMssql.php.
References $value, and wfSetVar().
DatabaseMssql::realTableName | ( | $ | name, |
$ | format = 'quoted' |
||
) |
call this instead of tableName() in the updater when renaming tables
string | $name | |
string | $format | One of quoted, raw, or split |
Definition at line 1345 of file DatabaseMssql.php.
References $name, and tableName().
Referenced by tableName().
Returns true if this database uses timestamps rather than integers.
Reimplemented from DatabaseBase.
Definition at line 56 of file DatabaseMssql.php.
DatabaseMssql::resultObject | ( | $ | result | ) |
bool | MssqlResultWrapper | resource | $result |
Reimplemented from DatabaseBase.
Definition at line 148 of file DatabaseMssql.php.
DatabaseMssql::scrollableCursor | ( | $ | value = null | ) |
Called in the installer and updater.
Probably doesn't need to be called anywhere else in the codebase.
bool | null | $value |
Definition at line 1374 of file DatabaseMssql.php.
References $value, and wfSetVar().
DatabaseMssql::select | ( | $ | table, |
$ | vars, | ||
$ | conds = '' , |
||
$ | fname = __METHOD__ , |
||
$ | options = array() , |
||
$ | join_conds = array() |
||
) |
SELECT wrapper.
mixed | $table | Array or string, table name(s) (prefix auto-added) |
mixed | $vars | Array or string, field name(s) to be retrieved |
mixed | $conds | Array or string, condition(s) for WHERE |
string | $fname | Calling function name (use __METHOD__) for logs/profiling |
array | $options | Associative array of options (e.g. array('GROUP BY' => 'page_title')), see Database::makeSelectOptions code for list of supported stuff |
array | $join_conds | Associative array of table join conditions (optional) (e.g. array( 'page' => array('LEFT JOIN','page_latest=rev_id') ) |
Reimplemented from DatabaseBase.
Definition at line 384 of file DatabaseMssql.php.
References $conds, $fname, $options, $ret, $vars, DatabaseBase\query(), and selectSQLText().
Referenced by estimateRowCount(), and populateColumnCaches().
DatabaseMssql::selectDB | ( | $ | db | ) |
string | $db |
Reimplemented from DatabaseBase.
Definition at line 1171 of file DatabaseMssql.php.
References $e, and DatabaseBase\query().
DatabaseMssql::selectSQLText | ( | $ | table, |
$ | vars, | ||
$ | conds = '' , |
||
$ | fname = __METHOD__ , |
||
$ | options = array() , |
||
$ | join_conds = array() |
||
) |
SELECT wrapper.
mixed | $table | Array or string, table name(s) (prefix auto-added) |
mixed | $vars | Array or string, field name(s) to be retrieved |
mixed | $conds | Array or string, condition(s) for WHERE |
string | $fname | Calling function name (use __METHOD__) for logs/profiling |
array | $options | Associative array of options (e.g. array('GROUP BY' => 'page_title')), see Database::makeSelectOptions code for list of supported stuff |
array | $join_conds | Associative array of table join conditions (optional) (e.g. array( 'page' => array('LEFT JOIN','page_latest=rev_id') ) |
Reimplemented from DatabaseBase.
Definition at line 436 of file DatabaseMssql.php.
References $conds, $fname, $options, $t, $vars, array(), as, getBitColumns(), and tableName().
Referenced by buildGroupConcatField(), and select().
DatabaseMssql::strencode | ( | $ | s | ) |
string | $s |
Implements DatabaseType.
Definition at line 1126 of file DatabaseMssql.php.
References $s.
Returns true if this database is strict about what can be put into an IP field.
Specifically, it uses a NULL value instead of an empty string.
Reimplemented from DatabaseBase.
Definition at line 52 of file DatabaseMssql.php.
DatabaseMssql::tableExists | ( | $ | table, |
$ | fname = __METHOD__ |
||
) |
string | $table | |
string | $fname |
Reimplemented from DatabaseBase.
Definition at line 997 of file DatabaseMssql.php.
References $res, global, list, DatabaseBase\query(), tableName(), and wfDebug().
DatabaseMssql::tableName | ( | $ | name, |
$ | format = 'quoted' |
||
) |
string | $name | |
string | $format |
Reimplemented from DatabaseBase.
Definition at line 1329 of file DatabaseMssql.php.
References $name, and realTableName().
Referenced by fieldExists(), fieldInfo(), insert(), realTableName(), selectSQLText(), tableExists(), textFieldSize(), and update().
DatabaseMssql::textFieldSize | ( | $ | table, |
$ | field | ||
) |
string | $table | |
string | $field |
Reimplemented from DatabaseBase.
Definition at line 874 of file DatabaseMssql.php.
References $res, $size, fetchRow(), DatabaseBase\query(), and tableName().
Returns true if current database backend supports ORDER BY or LIMIT for separate subqueries within the UNION construct.
Reimplemented from DatabaseBase.
Definition at line 72 of file DatabaseMssql.php.
DatabaseMssql::update | ( | $ | table, |
$ | values, | ||
$ | conds, | ||
$ | fname = __METHOD__ , |
||
$ | options = array() |
||
) |
UPDATE wrapper.
Takes a condition array and a SET array.
string | $table | Name of the table to UPDATE. This will be passed through DatabaseBase::tableName(). |
array | $values | An array of values to SET. For each array element, the key gives the field name, and the value gives the data to set that field to. The data will be quoted by DatabaseBase::addQuotes(). |
array | $conds | An array of conditions (WHERE). See DatabaseBase::select() for the details of the format of condition arrays. Use '*' to update all rows. |
string | $fname | The function name of the caller (from __METHOD__), for logging and profiling. |
array | $options | An array of UPDATE options, can be:
|
Reimplemented from DatabaseBase.
Definition at line 765 of file DatabaseMssql.php.
References $conds, $e, $options, $ret, array(), getBinaryColumns(), makeList(), DatabaseBase\makeUpdateOptions(), DatabaseBase\query(), and tableName().
DatabaseMssql::$mAffectedRows = null [protected] |
Definition at line 34 of file DatabaseMssql.php.
DatabaseMssql::$mBinaryColumnCache = null [protected] |
Definition at line 38 of file DatabaseMssql.php.
DatabaseMssql::$mBitColumnCache = null [protected] |
Definition at line 39 of file DatabaseMssql.php.
DatabaseMssql::$mIgnoreDupKeyErrors = false [protected] |
Definition at line 40 of file DatabaseMssql.php.
DatabaseMssql::$mInsertId = null [protected] |
Definition at line 32 of file DatabaseMssql.php.
DatabaseMssql::$mLastResult = null [protected] |
Definition at line 33 of file DatabaseMssql.php.
DatabaseMssql::$mPort [protected] |
Definition at line 42 of file DatabaseMssql.php.
DatabaseMssql::$mPrepareStatements = true [protected] |
Definition at line 37 of file DatabaseMssql.php.
DatabaseMssql::$mScrollableCursor = true [protected] |
Definition at line 36 of file DatabaseMssql.php.
DatabaseMssql::$mSubqueryId = 0 [protected] |
Definition at line 35 of file DatabaseMssql.php.