summary refs log tree commit diff stats
path: root/lib/impure
Commit message (Collapse)AuthorAgeFilesLines
* Better db_sqlite errors when db_sqlite not connected.Dominik Picheta2018-05-131-0/+3
|
* make nre compile againAndreas Rumpf2018-04-291-4/+4
|
* correct comparisons for nil strings/seqsAndreas Rumpf2018-04-281-1/+0
|
* remove dead code elimination option (#7669)Jacek Sieka2018-04-232-2/+2
|
* make re.split consistent with strutils.split and other programming ↵Andreas Rumpf2018-03-051-14/+28
| | | | languages; refs #7278
* Cleanup docs about re.nimAraq2018-03-051-5/+1
|
* move `readPasswordFromStdin` from rdstdin to terminal (#7266)Vindaar2018-02-271-44/+0
|
* fixes #7200Andreas Rumpf2018-02-101-20/+21
|
* re.nim: removed deprecated symbolsAraq2017-11-281-3/+0
|
* re.nim: Make tests green and deprecate 'parallelReplace'; it should be ↵Araq2017-11-281-5/+12
| | | | 'multiReplace' for consistency with strutils.nim
* make tests green againAndreas Rumpf2017-11-072-14/+14
|
* fixes #6631Andreas Rumpf2017-10-301-13/+13
|
* remove old implementation of the roof operator; make tests green again; ↵Andreas Rumpf2017-10-291-19/+17
| | | | close #6292
* Fixes #6571 (#6578)Thomas Johnson2017-10-241-8/+11
|
* Remove reExtended from re constructor. Fixes #5627. (#6514)Dominik Picheta2017-10-201-5/+8
| | | | | | * Remove reExtended from re constructor. Fixes #5627. * Implement `rex` procedure as requested by @Araq.
* another attempt to make tests green againAndreas Rumpf2017-10-101-3/+3
|
* minor improvement for the db_sqlite moduleAndreas Rumpf2017-09-271-1/+2
|
* db_postgres: Refactor open() behavior to be consistent with other DBs (#6381)Lyndsy Simon2017-09-151-4/+7
|
* Remove expr/stmt (#5857)Arne Döring2017-07-251-1/+1
|
* Fix segfault in db_mysql fastRows (#5605)pgkos2017-03-261-4/+20
|
* fixes #5444 - nre.findIter keeps searching when no match is possible (#5453)Florent2017-03-021-6/+6
|
* Fixes #5382Anatoly Galiulin2017-02-131-1/+1
|
* Column details for postgres. (#5380)ionel anton2017-02-131-15/+167
|
* fix in using the linenoise function (#5351)Arne Döring2017-02-081-1/+2
|
* fixes #4996Andreas Rumpf2017-02-051-0/+9
|
* re additions for buffer (cstring) RE matching (#5117)jlp7652017-01-161-98/+244
| | | | | | | | | | | | | | | | | | * Replace expr with untyped * Add buffer (cstring) related procs Replace expr with untyped Replace testing assert() procs with doAssert() * make the string variants call the cstring variants in order to fight code size * Remove redundant proc * fix casting of cstring add init of variables (identified by verbosity:3) * Speed up - use pattern.e for exec() inline some procs
* Merge pull request #4814 from scriptum/rpg-pcre-jitAndreas Rumpf2016-10-242-4/+13
|\ | | | | Enable JIT in PCRE to improve regular expressions performance
| * Remove TODO for PCRE JITPavel Roschin2016-10-101-1/+0
| |
| * Enable JIT in PCRE to improve regular expressions performancePavel Roschin2016-09-232-3/+13
| |
* | EIO is called IOError nowAraq2016-09-281-1/+1
| |
* | stdlib and compiler don't use .immediate anymoreAndreas Rumpf2016-07-291-3/+3
|/
* Stdlib: nre: Docstring improved.Konstantin Molchanov2016-06-151-1/+0
|
* de-deprecate re.nimAndreas Rumpf2016-06-131-5/+6
|
* Merge pull request #4157 from flaviut/update-nre-docsAndreas Rumpf2016-06-021-46/+35
|\ | | | | Generate NRE docs for website
| * Update NRE documentationFlaviu Tamas2016-05-131-46/+35
| |
* | documentation build cleaned upAndreas Rumpf2016-05-311-1/+1
| |
* | Merge branch 'db_odbc2' of https://github.com/jlp765/Nim into jlp765-db_odbc2Andreas Rumpf2016-05-281-23/+22
|\ \
| * | Fix row reading procs to not use SQLRowCount, but SQLFetch until returns ↵JamesP2016-01-241-54/+49
| | | | | | | | | | | | | | | | | | SQL_NO_DATA change SqlCheck() and SqlGetDBMS() to sqlCheck() and sqlGetDBMS() (camelCase consistency)
* | | Stdlib: nre: Add `export options`Konstantin Molchanov2016-05-271-0/+2
| | | | | | | | | This should make `nre` more user friendly. See https://github.com/nim-lang/Nim/issues/4158
* | | Stdlib: nre: Convenience proc ``contains`` added.Konstantin Molchanov2016-05-141-0/+10
| |/ |/|
* | Improve net and ssl module docs.Dominik Picheta2016-04-041-0/+3
| |
* | Fixes #3159.Dominik Picheta2016-04-041-3/+4
| |
* | Repair using the db_odbc module to query the Oracle database, the program ↵lihf85152016-03-211-80/+122
| | | | | | | | compiled in the release mode, the return of the field value is null.
* | SpellcheckFederico Ceratto2016-02-291-2/+2
| |
* | Rename THANDLE to Handle to fix deprecation warningsdef2016-02-111-1/+1
| |
* | Revert two deprecation changesdef2016-01-261-2/+0
| |
* | Fix a few deprecation warningsdef2016-01-252-1/+2
|/
* Fixed deprecation warnings while Nim compiles.Hans Raaf2016-01-181-1/+1
| | | | | I just removed unsigned and changed a writeLn() call to writeLine() to avoid the remaining deprecation warnings.
* Improved documentation for all db modules.Dominik Picheta2016-01-184-6/+134
|
* More postgres test code. Added getValue for PreparedStmts.Dominik Picheta2016-01-181-1/+12
| | | | Ref #3569. Ref #3560.