diff options
author | Dries Buytaert <dries@buytaert.net> | 2003-03-16 07:02:20 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2003-03-16 07:02:20 +0000 |
commit | 170b674a0953ce95e06f7a8442eb0f1097e7ee72 (patch) | |
tree | 11778666b2fc94cceaa947aea21a71bde0195380 /includes/conf.php | |
parent | 6dc1cf59ba2ca58f0b4200d820a23dc5f35ec1fb (diff) | |
download | brdo-170b674a0953ce95e06f7a8442eb0f1097e7ee72.tar.gz brdo-170b674a0953ce95e06f7a8442eb0f1097e7ee72.tar.bz2 |
- All LIMIT queries must go through the pager or through db_query_range().
The syntax for db_query_range() was enhanced so it matches db_query(). So
you may pass extra arguments of the SQL statement which are checked via
check_query() and then substituted into the SQL statement. After these
optional arguments, you always pass $from and $count parameters which
define your range. Most often, the $from is 0 and the count is the max
number of records you want returned. Patch by Moshe.
- The pager_query() function for PEAR was enhanced so that it adds proper
GROUP BY statement counting the number of records to be paged. Patch by
James Arthur.
- MSSQL database scheme by Moshe.
Diffstat (limited to 'includes/conf.php')
-rw-r--r-- | includes/conf.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/includes/conf.php b/includes/conf.php index ae59d1047..920a94397 100644 --- a/includes/conf.php +++ b/includes/conf.php @@ -12,8 +12,9 @@ # and so on is likely to confuse the parser; use alpha-numerical # characters instead. -# $db_url = "pgsql://user:password@hostname/database"; # $db_url = "mysql://user:password@hostname/database"; +# $db_url = "pgsql://user:password@hostname/database"; +# $db_url = "mssql://user:password@hostname/database"; $db_url = "mysql://drupal:drupal@localhost/drupal"; |