Petr Škoda
1a4596e434
MDL-29442 add missing utf-8 to entity html encoding and decoding
2012-12-09 18:21:38 +01:00
Petr Skoda
00902cd974
MDL-32003 fix phpdocs and use __DIR__ for includes in dml layer
...
DML layer is not supposed to use $CFG,
it is better to rely on __DIR__ in self-contained libs…
2012-06-17 22:56:28 +02:00
Petr Skoda
05aae0a571
MDL-29514 drop support for enum data types
2012-03-10 21:36:48 +01:00
Petr Skoda
a681b6c0a9
MDL-31689 fix moodle_database:execute() description
2012-03-07 12:36:40 +01:00
Aparup Banerjee
dafa20e85c
MDL-30972 Documentation : improved @see as well as added appropriate uses of inline @link.
2012-02-16 10:29:45 +08:00
Aparup Banerjee
a0eb2e97f9
MDL-30972 Documentation : Renamed DB engine drivers to "@package core" but moodle_*.php are "@subpackage dml_driver", all other dml/*.php are "@subpackage dml".
2012-02-09 10:01:42 +08:00
Aparup Banerjee
6df260107c
MDL-30972 Documentation : clarified phpdocs for main public APIs in DML layer and touched up on some drivers
2012-02-09 10:01:42 +08:00
Eloy Lafuente (stronk7)
5a4a7b425b
MDL-25708 recordsets - fix upgradelib and dml stuff
2011-01-25 19:59:00 +01:00
Petr Skoda
9331d879eb
MDL-14679 more return types added
2010-08-22 19:06:06 +00:00
Petr Skoda
3503dcad31
MDL-14679 fixing more incorrect return types
2010-08-22 19:00:28 +00:00
Petr Skoda
5212b07f20
MDL-14679 fixing incorrect return type of recordset methods
2010-08-22 18:55:29 +00:00
Petr Skoda
2d1e17c899
MDL-23568 fixed regression
2010-07-31 21:11:26 +00:00
Petr Skoda
d8fa8e406e
MDL-23568 parameters of DML function insert_record are not modified any more < improved coding style, now using cast to array consistently
2010-07-31 20:51:22 +00:00
Petr Skoda
66c0ee78a5
MDL-21249 fixed wrong package grrrrrr, thanks Eloy!
2010-07-25 20:18:39 +00:00
Petr Skoda
f2ed3f05a7
MDL-21249 improved php docs and adding direct access prevention in dml
2010-07-25 12:57:24 +00:00
Petr Skoda
2434f624ad
yet more comment typos
2010-05-21 18:32:44 +00:00
Petr Skoda
d5a8d9aa71
MDL-20625 new delegated transaction support in DML
2009-11-07 08:52:56 +00:00
skodak
eb123debc6
MDL-19474 One year and a half ago we started designing and implementing our new databse abstraction layer which included brand new moodle native drivers. Today we are finally removing old legacy drivers that were still using adodb internally. From now on the adodb will be used only in some authentication and enrolment plugins, we are probably going to drop adodb there too later in 2.x. Thanks everybody who helped test and improve our new drivers, even bigger thanks to all the great developers who created ADOdb!
2009-10-08 22:34:34 +00:00
poltawski
e9c734ba5c
dml/sqllite MDL-19643 Throw exceptions to make things more robust
...
Various functions were catching the pdo error and returning
false, but this isn't enough. I have modified the functions to
throw a dml exception like other drivers do.
2009-06-27 21:22:50 +00:00
poltawski
fa648098b2
dml/sqllite MDL-19642 - Make connections more robust
...
- Include 'pdo' as an extension to be checked for
- Bail out of a connect and throw an exception if the required
extensions aren't loaded
- Don't ignore pdo exceptions on connect error - throw our
own exception
2009-06-27 21:22:27 +00:00
skodak
4992614541
MDL-19470 fixing DML license headers
2009-06-12 08:14:29 +00:00
skodak
a1dda107bd
MDL-19470 detection of nested transactions, only one level allowed
2009-06-12 07:55:44 +00:00
skodak
3b09331066
MDL-17458 rewritten installer
2009-02-07 10:20:33 +00:00
skodak
117679db37
MDL-17859 implemented caching in get_tables()
2009-01-12 18:10:50 +00:00
dongsheng
60e40dda6c
"MDL-14129, remove the rest error() in moodle2"
2008-12-12 04:53:32 +00:00
skodak
22d77567a9
MDL-17317 DML: Exceptions used by all drivers now :-) expect some more commits/cleanup soon
2008-11-21 20:09:13 +00:00
skodak
655bbf511d
MDL-16669 dml: improved sql_substring(), added unit tests
2008-10-28 15:11:10 +00:00
skodak
beaa43db85
MDL-17036 dml: dbpersist moved into dboptions
2008-10-27 22:21:34 +00:00
skodak
a47c84c4bb
MDL-15635 sqlite fixes - by Andrei Bautu
2008-08-30 18:46:18 +00:00
skodak
94898738ff
MDL-15671, MDL-15717 DB->import_record() support - code based on patch by Andrei Bautu; added new param to raw insert; unit tests included
2008-08-25 21:00:47 +00:00
skodak
8e378ec045
MDL-15071 improved error logging - credit goes to Andrei Bautu
2008-07-13 20:28:08 +00:00
skodak
16a5642c69
MDL-14679 var_export now used instead of addsingleslashes in installer; refactored the database setting initialisation
2008-06-22 22:53:40 +00:00
skodak
98e1919368
MDL-15071 fixed typo
2008-06-22 22:32:16 +00:00
skodak
55946ffda6
MDL-15071 new sqlite pdo driver by Andrei Bautu (with minor changes)
2008-06-22 21:35:07 +00:00
skodak
3dce78e125
MDL-15247 lib/dmllib.php is now obsolete
2008-06-15 11:35:25 +00:00
skodak
a7544e377a
MDL-14974 improved columns caching implementation
2008-05-25 09:31:38 +00:00
stronk7
6d5a22b208
Installer fixed, prefixes improved, moved conn settings to connect() and some more improvements. MDL-14864
2008-05-19 18:02:33 +00:00
skodak
f33e1ed4ae
MDL-14679 ok, here is the big patch with new dmllib and ddlib API, some code is already converted, XML db editor works; see tracker for details of regressions and TODOs
2008-05-15 21:40:00 +00:00