summaryrefslogtreecommitdiffstats
path: root/system/database/drivers/mssql/mssql_driver.php
AgeCommit message (Collapse)AuthorFilesLines
2012-06-02Replaced `==` with `===` and `!=` with `!==` in /system/databaseAlex Bilbie1-3/+3
2012-05-26Move count_all() from the drivers to CI_DB_driverAndrey Andreev1-29/+0
2012-05-23Removed the parameter use in database drivers' _close() and added a default ↵Andrey Andreev1-4/+3
_close() method in CI_DB_driver + some changelog fixes
2012-04-27Merge branch 'develop' of github.com:EllisLab/CodeIgniter into develop-db-mssqlAndrey Andreev1-2/+2
2012-04-26Merge branch 'develop' of git://github.com/EllisLab/CodeIgniter into developJamie Rumbelow1-204/+79
Conflicts: system/core/Loader.php system/database/DB_query_builder.php system/database/drivers/cubrid/cubrid_driver.php system/database/drivers/mssql/mssql_driver.php system/database/drivers/mysql/mysql_driver.php system/database/drivers/mysqli/mysqli_driver.php system/database/drivers/oci8/oci8_driver.php system/database/drivers/odbc/odbc_driver.php system/database/drivers/pdo/pdo_driver.php system/database/drivers/postgre/postgre_driver.php system/database/drivers/sqlite/sqlite_driver.php user_guide_src/source/changelog.rst user_guide_src/source/database/query_builder.rst
2012-04-09Merge upstream branchAndrey Andreev1-8/+42
2012-04-09Fix AR delete() for MSSQL and SQLSRVAndrey Andreev1-14/+8
2012-04-09Extend fix for #798 to work across all DB drivers instead of just mysqlAndrey Andreev1-0/+32
2012-04-06Merge upstram branchAndrey Andreev1-85/+4
2012-04-06Renamed _escape_identifiers() to escape_identifiers() and moved it to ↵Andrey Andreev1-41/+0
CI_DB_driver
2012-04-05Fixed MSSQL and SQLSrv truncate()Andrey Andreev1-0/+18
2012-04-05Added a default _truncate() method to CI_DB_active_recordAndrey Andreev1-17/+0
2012-04-05Added a default _update() method to CI_DB_active_recordAndrey Andreev1-35/+0
2012-04-05Replaced driver instances of _insert() with one in CI_DB_active_recordAndrey Andreev1-17/+0
2012-03-28Merge upstream branchAndrey Andreev1-23/+4
2012-03-28Added random ordering support for MSSQL and SQLSRV drivers and removed an ↵Andrey Andreev1-2/+2
unused method
2012-03-26Add visibility declarations where they remain missingAndrey Andreev1-2/+1
2012-03-23Add dummy method reconnect() method to CI_DB_driver and remove it from ↵Andrey Andreev1-15/+0
drivers that don't support it
2012-03-20Merge upstream branchAndrey Andreev1-39/+24
2012-03-20Visibility declarations and cleanup for CI_DB_mssql_driverAndrey Andreev1-80/+56
2012-03-20Remove extraneous newlinesTimothy Warren1-3/+1
2012-03-20Revert "Added access modifiers for MSSQL driver"Timothy Warren1-28/+53
This reverts commit ba1ebbefa9c5d225fa28c76dac276e6120263a25.
2012-03-19Added access modifiers for MSSQL driverTimothy Warren1-53/+28
2012-03-19Removed pointless _prep_sql methodsTimothy Warren1-17/+0
2012-03-09Merge branch 'develop' of github.com:EllisLab/CodeIgniter into developPhil Sturgeon1-2/+1
2012-03-09Bumped CodeIgniter's PHP requirement to 5.2.4.Phil Sturgeon1-1/+1
Yes I know PHP 5.4 just came out, and yes I know PHP 5.3 has lovely features, but there are plenty of corporate systems running on CodeIgniter and PHP 5.3 still is not widely supported enough. CodeIgniter is great for distributed applications, and this is the highest we can reasonably go without breaking support. PHP 5.3 will most likely happen in another year or so. Fingers crossed on that one anyway...
2012-03-09Merge upstream branchAndrey Andreev1-17/+9
2012-03-06Merge branch 'develop' of git://github.com/EllisLab/CodeIgniter into developJamie Rumbelow1-40/+12
Conflicts: system/database/DB_driver.php system/database/DB_query_builder.php
2012-03-06Resolve _protect_identifiers()/protect_identifiers() usage issuesAndrey Andreev1-2/+1
2012-03-03Improve DB version() implementation and add pg_version() supportAndrey Andreev1-4/+3
2012-03-02Replaced DB methods _error_message() and _error_number() with error() (issue ↵Andrey Andreev1-18/+8
#1097)
2012-03-01Merge upstream branchAndrey Andreev1-15/+0
2012-02-28Merge branch 'develop' of git://github.com/EllisLab/CodeIgniter into developJamie Rumbelow1-5/+16
2012-02-27Fixed a db_set_charset() bugAndrey Andreev1-16/+0
2012-02-24Merge upstream branchAndrey Andreev1-2/+14
2012-02-24Update database property when switching to a new oneAndrey Andreev1-1/+12
2012-02-22Add an optional database name parameter to db_select()Andrey Andreev1-5/+5
2012-02-19Renaming Active Record to Query Builder across the systemJamie Rumbelow1-2/+2
2012-02-12Added port handling support for UNIX systems and moved it to the constructorAndrey Andreev1-10/+10
2012-01-27Merge upstream branchAndrey Andreev1-1/+1
2012-01-26A minor improvement to insert_id()Andrey Andreev1-4/+4
2012-01-26Make _escape_identifiers() public, so DB_forge can use itAndrey Andreev1-1/+1
2012-01-25Switch a few properties from public to protectedAndrey Andreev1-5/+5
2012-01-25Improve the MSSQL database driverAndrey Andreev1-155/+87
2012-01-02Updating copyright date to 2012Greg Aker1-1/+1
2011-10-20adding new license file (OSL 3.0) and updating readme to ReSTDerek Jones1-4/+16
added notice of license to all source files. OSL to all except the few files we ship inside of the application folder, those are AFL. Updated license in user guide. incrementing next dev version to 3.0 due to licensing change
2011-08-20Fixed a bug (#200) where MySQL queries would be malformed after calling ↵Greg Aker1-0/+1
db->count_all() then db->get()
2011-07-02backed out 648b42a75739, which was a NON-trivial whitespace commit. It ↵Derek Jones1-1/+1
broke the Typography class's string replacements, for instance
2011-04-25Fixed double-space typo.Razican1-1/+1
2011-04-02Fixed issue #153 Escape Str Bug in MSSQL driverPhil Sturgeon1-3/+5