Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix wrong integer types in odbcsql and db_odbc (#10419) | pgkos | 2019-01-22 | 1 | -46/+18 |
| | | | | | * Fix wrong parameter type in SQLErr * Fix wrong types of integers passed to SQLGetData | ||||
* | Restrict ptr/ref to ptr/ref implicit conversion (#10411) | LemonBoy | 2019-01-22 | 1 | -5/+9 |
| | | | | | | | | * Restrict ptr/ref to ptr/ref implicit conversion Fixes #10409 * Make the ptr conversions explicit in db_odbc | ||||
* | Remove long deprecated stuff (#10332) | Miran | 2019-01-18 | 1 | -26/+1 |
| | |||||
* | fixes #7241 | Araq | 2019-01-13 | 1 | -10/+16 |
| | |||||
* | make the stdlib work with the changed docgen | Araq | 2019-01-11 | 1 | -4/+4 |
| | |||||
* | remove deprecated modules (#10215) | Miran | 2019-01-07 | 1 | -99/+0 |
| | | | | | | | | | | | | | | | | | | * removed from `compiler`: * lists (deprecated 2 years ago) * removed from `lib` (all deprecated 3 years ago): * ssl * matchers * httpserver * removed from `lib/deprecated`: * unsigned * actors (and three accompanying tests) * parseurl * moved to `lib/deprecated`: * securehash (the reason for not directly removing - it was deprecated (only) one year ago) | ||||
* | Fix ODBC SQL Error string decoding (#10207) [backport] | Leonardo Cecchi | 2019-01-07 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | ODBC Errors were presented to the users as a sequence of characters. I.e.: >test_oracle.exe Error: ['H', 'Y', '0', '0', '0', '\x00', '\x00', ...] test_oracle.nim(15) test_oracle test_oracle.nim(8) test_oracle db_odbc.nim(534) open db_odbc.nim(168) dbError Error: unhandled exception: ODBC Error [DbError] This patch fix the string decoding, creating a real string: >test_oracle.exe Error: HY000 [Oracle][ODBC][Ora]ORA-12541: TNS:no listener test_oracle.nim(15) test_oracle test_oracle.nim(8) test_oracle db_odbc.nim(534) open db_odbc.nim(168) dbError Error: unhandled exception: ODBC Error [DbError] | ||||
* | Rework nil/option for nre in light of ""==nil | Flaviu Tamas | 2018-12-11 | 2 | -69/+82 |
| | | | | Fixes #9243 | ||||
* | Revert 7f49364fd0 for nre | Flaviu Tamas | 2018-12-11 | 2 | -7/+11 |
| | |||||
* | Improve nre documentation (fixes #9470) | Flaviu Tamas | 2018-11-18 | 1 | -1/+16 |
| | |||||
* | removes deprecated T/P types | Araq | 2018-11-16 | 5 | -6/+0 |
| | |||||
* | fix split proc ignored maxsplit argument. Proc split didn't pass maxsplit ↵ | Denis Lisovik | 2018-11-11 | 1 | -1/+8 |
| | | | | argument to split iterator | ||||
* | nre: don't use the deprecated import syntax | Araq | 2018-10-30 | 1 | -1/+1 |
| | |||||
* | actually do ceiling division, not a similar operation | Clyybber | 2018-10-28 | 1 | -1/+1 |
| | | | Co-Authored-By: flaviut <tamasflaviu@gmail.com> | ||||
* | Eliminate floating point arithmatic in nre | Flaviu Tamas | 2018-10-28 | 1 | -1/+2 |
| | | | | | | | Integer division is already hard enough on your CPU, using floating point here is WAY slower and can just as effectivly be done using integers. This is important because matchImpl tends to be in the center of very hot loops (like split()). | ||||
* | Update example (#9395) | Federico Ceratto | 2018-10-17 | 1 | -1/+1 |
| | |||||
* | fixes #9306 properly, fixes #9306 | Andreas Rumpf | 2018-10-14 | 1 | -2/+12 |
| | |||||
* | Fix type in docs (#9362) | Josh Goebel | 2018-10-14 | 1 | -1/+1 |
| | |||||
* | fixes #9306 | Araq | 2018-10-11 | 1 | -2/+2 |
| | |||||
* | Merge pull request #9171 from flaviut/fix-9053 | Dominik Picheta | 2018-10-03 | 1 | -41/+57 |
|\ | | | | | Use runnableExamples for nre example code where possible | ||||
| * | Use runnableExamples for example nre code | Flaviu Tamas | 2018-10-03 | 1 | -41/+57 |
| | | |||||
* | | Merge pull request #9151 from flaviut/fix-9053 | Dominik Picheta | 2018-10-01 | 1 | -6/+6 |
|\| | | | | | Fix option documentation in nre (fixes #9053) | ||||
| * | Fix option documentation in nre (fixes #9053) | Flaviu Tamas | 2018-10-01 | 1 | -6/+6 |
| | | |||||
* | | docs: remove most stale links; refs #9109 | Araq | 2018-09-29 | 1 | -9/+6 |
|/ | |||||
* | make more tests green | Andreas Rumpf | 2018-08-14 | 3 | -36/+7 |
| | |||||
* | make nimweb compile again | Araq | 2018-08-14 | 1 | -1/+1 |
| | |||||
* | make more tests green | Andreas Rumpf | 2018-08-13 | 2 | -11/+7 |
| | |||||
* | WIP: disallow 'nil' for strings and seqs | Andreas Rumpf | 2018-08-13 | 1 | -5/+3 |
| | |||||
* | Update nre.nim (#8147) | Timothee Cour | 2018-06-29 | 1 | -4/+4 |
| | |||||
* | Fix typo: PRCE -> PCRE | Kaushal Modi | 2018-06-05 | 1 | -3/+3 |
| | |||||
* | db_mysql.nim: Work around string nil comparison logic | Andreas Rumpf | 2018-06-04 | 1 | -1/+1 |
| | |||||
* | Update sqlite example to use empty strings. | Varriount | 2018-06-03 | 1 | -1/+1 |
| | | | Update sqlite example to use empty strings to use empty strings instead of nil. | ||||
* | Update example (#7788) | Federico Ceratto | 2018-06-01 | 1 | -1/+1 |
| | |||||
* | Better db_sqlite errors when db_sqlite not connected. | Dominik Picheta | 2018-05-13 | 1 | -0/+3 |
| | |||||
* | make nre compile again | Andreas Rumpf | 2018-04-29 | 1 | -4/+4 |
| | |||||
* | correct comparisons for nil strings/seqs | Andreas Rumpf | 2018-04-28 | 1 | -1/+0 |
| | |||||
* | remove dead code elimination option (#7669) | Jacek Sieka | 2018-04-23 | 2 | -2/+2 |
| | |||||
* | make re.split consistent with strutils.split and other programming ↵ | Andreas Rumpf | 2018-03-05 | 1 | -14/+28 |
| | | | | languages; refs #7278 | ||||
* | Cleanup docs about re.nim | Araq | 2018-03-05 | 1 | -5/+1 |
| | |||||
* | move `readPasswordFromStdin` from rdstdin to terminal (#7266) | Vindaar | 2018-02-27 | 1 | -44/+0 |
| | |||||
* | fixes #7200 | Andreas Rumpf | 2018-02-10 | 1 | -20/+21 |
| | |||||
* | re.nim: removed deprecated symbols | Araq | 2017-11-28 | 1 | -3/+0 |
| | |||||
* | re.nim: Make tests green and deprecate 'parallelReplace'; it should be ↵ | Araq | 2017-11-28 | 1 | -5/+12 |
| | | | | 'multiReplace' for consistency with strutils.nim | ||||
* | make tests green again | Andreas Rumpf | 2017-11-07 | 2 | -14/+14 |
| | |||||
* | fixes #6631 | Andreas Rumpf | 2017-10-30 | 1 | -13/+13 |
| | |||||
* | remove old implementation of the roof operator; make tests green again; ↵ | Andreas Rumpf | 2017-10-29 | 1 | -19/+17 |
| | | | | close #6292 | ||||
* | Fixes #6571 (#6578) | Thomas Johnson | 2017-10-24 | 1 | -8/+11 |
| | |||||
* | Remove reExtended from re constructor. Fixes #5627. (#6514) | Dominik Picheta | 2017-10-20 | 1 | -5/+8 |
| | | | | | | * Remove reExtended from re constructor. Fixes #5627. * Implement `rex` procedure as requested by @Araq. | ||||
* | another attempt to make tests green again | Andreas Rumpf | 2017-10-10 | 1 | -3/+3 |
| | |||||
* | minor improvement for the db_sqlite module | Andreas Rumpf | 2017-09-27 | 1 | -1/+2 |
| |