20f9c06e | 11-Sep-2013 |
Hideaki SAWADA <chuno@live.jp> |
translation update |
eee73321 | 16-Aug-2013 |
Tim Weinhold <tim.weinhold@gmail.com> |
translation update |
6cb6a770 | 14-Aug-2013 |
Myeongjin <aranet100@gmail.com> |
translation update |
4f5908b0 | 13-Aug-2013 |
Mark Prins <mprins@users.sf.net> |
translation update |
b7b987ee | 04-Aug-2013 |
Aleksandr Selivanov <alexgearbox@gmail.com> |
translation update |
b122d121 | 08-May-2013 |
Andreas Gohr <gohr@cosmocode.de> |
fixed problem with select in transactions |
c137e95f | 06-May-2013 |
Andreas Gohr <gohr@cosmocode.de> |
added a null adapter
this should help with many error messages where plugins expect a valid database if the sqlite plugin could be initialized but in reality the db still needs conversion. |
dbfe0138 | 06-Feb-2013 |
Andreas Gohr <gohr@cosmocode.de> |
upped version |
0ea8da9c | 28-Jan-2013 |
Andreas Gohr <gohr@cosmocode.de> |
clear data member on each requests. fixes #4 |
6782aa83 | 24-Jan-2013 |
Andreas Gohr <gohr@cosmocode.de> |
readme fix |
db052cbe | 23-Jan-2013 |
Andreas Gohr <gohr@cosmocode.de> |
put tests into their own group |
d7f774e0 | 23-Jan-2013 |
Aleksandr Selivanov <alexgearbox@gmail.com> |
Russian translation added |
355597ac | 22-Jan-2013 |
Andreas Gohr <gohr@cosmocode.de> |
removed a bit of unneeded stuff |
31078b3c | 22-Jan-2013 |
Andreas Gohr <gohr@cosmocode.de> |
fixed README and upped version |
8f839877 | 22-Jan-2013 |
Andreas Gohr <gohr@cosmocode.de> |
dropped support for referencing specific row in res2row
This is not possible in Sqlite3 (PDO) because of the lack of scrollable cursors. |
852bc682 | 22-Jan-2013 |
Andreas Gohr <gohr@cosmocode.de> |
do not count changes of an empty result |
b0653a7e | 22-Jan-2013 |
Andreas Gohr <gohr@cosmocode.de> |
added a way to force sqlite2 in the tests |
666c8be7 | 22-Jan-2013 |
Andreas Gohr <gohr@cosmocode.de> |
supress error messages in prepareSQL for Unit Tests |
5922cb27 | 22-Jan-2013 |
Andreas Gohr <gohr@cosmocode.de> |
corrected string detected
sqlite only allows single quoted strings and uses doubled single quotes for escaping |
3fb592da | 22-Jan-2013 |
Andreas Gohr <gohr@cosmocode.de> |
statebased parser for splitting SQL strings
the RegExp approach segfaulted on larger inputs (eg. full database dumps). The new approach can also handle comments and multiline strings. |
44685fc6 | 03-Nov-2012 |
Klap-in <klapinklapin@gmail.com> |
Many minor fixes mostly on error handling sqlpreparation has now also check on too much replacements. Most stuff filtered out by the unit tests. Unit tests needs yet a run on sqlite2 installation. PD
Many minor fixes mostly on error handling sqlpreparation has now also check on too much replacements. Most stuff filtered out by the unit tests. Unit tests needs yet a run on sqlite2 installation. PDO has one failing test: PDO->res2row() return only next result, and doesn't use an absolute pointer. Therefor are prepare() and execute() needed so a scrollable cursor can be set.
show more ...
|
ca2f2ada | 03-Nov-2012 |
Klap-in <klapinklapin@gmail.com> |
Add unit tests for functions that referers to the different sqlite backends |
7bb92a7b | 01-Nov-2012 |
Klap-in <klapinklapin@gmail.com> |
Update readme and plugin.info.txt |
0542fc8e | 01-Nov-2012 |
Klap-in <klapinklapin@gmail.com> |
Changed link of headers in ToC of admin page to static url. Some code reformating. |
a34ef333 | 01-Nov-2012 |
Klap-in <klapinklapin@gmail.com> |
Added database version upgrade funtion. Added dump and import functions. Added checks and rename and convert buttons to admin interface, that adds upgrade function when possible |