286 Commits

Author SHA1 Message Date
Eloy Lafuente
ff8c7b2ac8 MDL-19057 DML tests - prevent CLOB/BLOB contents to be in error/pass output 2009-11-30 16:45:07 +00:00
Eloy Lafuente
7baf478491 MDL-20625 concurrent tests - added note about MySQL and MSSQL 2009-11-08 23:15:02 +00:00
Eloy Lafuente
9d3cbeb695 MDL-17491 oracle connections - fix annoyance when multiple connections
are used and enforce new connections by using oci_new_connect()
2009-11-08 23:13:31 +00:00
Petr Skoda
07b81ebd2d MDL-20625 coding help - better detection of missing commit or rollback 2009-11-08 21:19:11 +00:00
Petr Skoda
c0829930c8 MDL-20625 new test for transaction cuncurrency - proposed by Eloy 2009-11-08 19:00:19 +00:00
Petr Skoda
3400bf6cc4 MDL-20625 fixed typos, credit goes to Martin Langhoff 2009-11-07 16:00:13 +00:00
Petr Skoda
d5a8d9aa71 MDL-20625 new delegated transaction support in DML 2009-11-07 08:52:56 +00:00
Eloy Lafuente
e3acc8af7a MDL-20734 normalise_value() - moving from private to protected everywhere and abstracting 2009-11-04 13:19:11 +00:00
Eloy Lafuente
8fb501e96c MDL-20734 empties and zeros - implemented the normalise_value() function in
mysql and postgres to perform central normalisation of values for insert/
update/set_field. Now all DB drivers cast empty strings to 0 when working
with numeric columns (integer and decimal)
2009-11-03 23:34:43 +00:00
Eloy Lafuente
2f9c1693a0 MDL-20734 Changed tests behaviour so insert/update/set_field will be expected to cast
empty strings (in numeric columns) to 0
2009-11-03 19:53:11 +00:00
Eloy Lafuente
fdc45ac360 NOBUG: Added some tests with empty strings in insert_record/update_record/set_field
that reveal inconsistencies between DBs
2009-11-03 18:11:18 +00:00
Eloy Lafuente
7c47635220 Added missing PK causing problems in MySQL. Will test that later in
proper DDL tests...
2009-11-03 10:20:56 +00:00
Petr Skoda
4103f151f9 MDL-20715 fixed notice from dml native oci driver when php driver not installed 2009-11-02 14:33:46 +00:00
Petr Skoda
117bd74897 MDL-20700 coding style cleanup - cvs keywords removed, closign php tag removed, trailing whitespace cleanup 2009-11-01 11:31:16 +00:00
Dan Poltawski
8ee8780ebf lib/dml - 'complicated sql' unit test MDL-19645
I have just added one specific example SQL syntax which was breaking on
earlier versions of sqlite. We need to add more variations used throughout
moodle so different engines can be properly tested for compatibility.
2009-10-27 23:25:07 +00:00
stronk7
5d91786a35 MDL-19057 dml tests: Complete limitfrom/limitnum tests and delete some dupes 2009-10-16 14:16:18 +00:00
stronk7
72a3902f5a MDL-14679 fixing limitfrom, limitnum queries under pgsql, mssql and oracle 2009-10-16 14:14:03 +00:00
stronk7
628dff250f MDL-19057 dml tests: Completed (and passed in all the big four!) the
insert_record() and update_record() tests. Including nulls, booleans, zeros, empties,
quotes and backslashes, some php operations, clobs and blobs. Also covering
get_record()/get_recordset() for all those cases.
2009-10-15 22:20:02 +00:00
stronk7
489ef94fa8 Fix storing onf NULLs by set_field_xxx() into binary columns. 2009-10-15 15:17:21 +00:00
stronk7
fbabe35a56 MDL-19057 dml tests: Completed (and passed in all the big four!) the
set_field_select() tests. Including nulls, booleans, zeros, empties,
quotes and backslashes, some php operations, clobs and blobs. Going
to mimic all them to insert/update_record tests.
2009-10-14 17:53:38 +00:00
stronk7
f95cc12575 MDL-17491 oci driver: exception when binding strings into int/float
colums. PHP casting was causing unexpected behaviour. Grrr.
2009-10-14 17:27:13 +00:00
stronk7
8a89be3c24 MDL-17969 mssql driver: Fix boolean values in text columns 2009-10-14 14:14:00 +00:00
stronk7
2b4cf032fa Fix retrieving of NULLs in PG databases and binary fields 2009-10-14 10:32:48 +00:00
stronk7
3c41bba0f2 MDL-17969 mssql native driver: improve temp tables detection. Now they can be concurrently created in different sessions. 2009-10-09 18:39:16 +00:00
stronk7
ab62bd23ff MDL-14679 tidy phpdocs for sql_substr() a bit 2009-10-09 10:02:39 +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
stronk7
08559d7de0 MDL-17491 oci native driver - now supporting db locks (hence db sessions) 2009-10-08 14:39:58 +00:00
stronk7
30c79d7c42 MDL-17491 oci native driver: fix LOB meta length and minor whitespace 2009-09-28 23:19:20 +00:00
stronk7
c6a1e0329a MDL-17491 oci native driver: adding support for local temp tables, via store 2009-09-28 18:15:42 +00:00
stronk7
4b1ee2b3c4 MDL-14679 temporary tables: modify approach so name changes are
now phisically stored and not only calculated on the fly. Oracle
will need that.
2009-09-28 18:10:07 +00:00
stronk7
21e4f4b212 MDL-17491 oci native driver: prevent get_columns() to execute huge queries
and fix return binding to proper SQLT_INT. Truncation was happening with LONG!
2009-09-28 10:27:24 +00:00
stronk7
07f27ecd71 MDL-17491 oracle native driver: add missing tables cache and improve NUMBER and defaults detection 2009-09-24 21:51:32 +00:00
stronk7
d578c19757 MDL-19057 No more exceptions in tests for oracle. If tests fail, MDL-20339 can be the culprit. 2009-09-24 13:51:41 +00:00
stronk7
190ff43b8a MDL-17020 pgsql native driver: use same solution than mssql and oci to disable driver verbosity 2009-09-23 13:42:31 +00:00
stronk7
5c08b24b22 MDL-17969 mssql native driver: better solution to avoid driver verbosity 2009-09-23 13:35:59 +00:00
stronk7
a9ad1798ba MDL-17491 oracle native driver: prevent verbosity of the driver 2009-09-23 13:33:42 +00:00
mudrd8mz
44f6ca9e11 MDL-20334 re-fix - small performance improvement
As Petr suggested, is_array() is faster than empty() so it makes sense
to check it first.
2009-09-22 21:18:29 +00:00
mudrd8mz
1336c8ebca MDL-20334 get_in_or_equal() does not accept empty array 2009-09-22 21:03:38 +00:00
stronk7
9a61e6ba1f MDL-17491 oracle native driver: normalise empty behaviour (dirty hack) to
work with all CHAR/CLOB columns and implemente oracle transactions support.
2009-09-22 16:44:27 +00:00
stronk7
cf874b2949 MDL-17491 dml tests4oracle empties/null/hack added. 2009-09-22 16:26:14 +00:00
stronk7
52a0162647 MDL-17491 oracle native driver: LOB handling near finished + some helper functions 2009-09-22 08:58:22 +00:00
stronk7
d3f9913a4f MDL-17491 oci native driver: reverting 2 debug-like bits I left in previous commit 2009-09-21 11:43:58 +00:00
stronk7
8b30c95332 MDL-17491 Better fetching this way :-) 2009-09-21 11:38:04 +00:00
stronk7
515cb65357 MDL-19057 added hack for oracle testing (random oci bug) and some missing close() statements. 2009-09-21 11:32:45 +00:00
stronk7
8089f8f67e MDL-17491 oci native driver: preparing to support transactions, oracle dirty hack and others. WIP 2009-09-21 11:28:42 +00:00
stronk7
df5f916570 Fix incorrect var name and unnecessary (object) cast 2009-09-15 22:14:54 +00:00
stronk7
7cfaef13aa MDL-17491 oci native driver - improve exception/error handling to know what the hell is happening. ;-) 2009-09-11 09:38:42 +00:00
stronk7
81f5be122b s/DB tra/BD Tra/g 2009-09-09 16:35:17 +00:00
stronk7
167cbee855 couple tests for DBs not supporting transactions 2009-09-09 16:33:45 +00:00
stronk7
8a4f9c0629 oci driver regexp abilities default to moodle_database ones 2009-09-09 16:04:49 +00:00