summary refs log tree commit diff stats
path: root/lib/impure/db_sqlite.nim
Commit message (Expand)AuthorAgeFilesLines
* Improved documentation for all db modules.Dominik Picheta2016-01-181-1/+42
* new db_sqlite requires deadCodeElim:on because not every sqlite3_column_nameAndreas Rumpf2015-12-291-0/+2
* implements column information retrival for db_sqliteAndreas Rumpf2015-12-171-0/+33
* updated db*.nim modulesAndreas Rumpf2015-12-161-1/+1
* big update for the db*.nim modules; uses new db_common.nimAndreas Rumpf2015-12-161-46/+28
* Clean up a line endingJamesP2015-09-061-1/+1
* instantRows doco added "the" to improve readabilityJamesP2015-09-061-1/+1
* fastRows() iterator doco updated (similar to db_mysql) with sqlite specificJamesP2015-09-061-3/+7
* Add example (similar to db_mysql) with changes to table definitionJamesP2015-09-061-0/+30
* lib: Trim .nim files trailing whitespaceAdam Strzelecki2015-09-041-42/+42
* db: InstantRow and instantRowsAdam Strzelecki2015-06-091-1/+23
* lib/impure - Dropped 'T' from typespdw2015-06-041-30/+31
* Don't run non-test code when defined(testing)Oleh Prypin2015-04-211-1/+1
* move database encoding options to setEncoding(), leave open() as it isKeMeGe2015-03-161-4/+15
* Add character set options when opening DB connectionKeMeGe2015-03-141-2/+3
* fixes #1866Araq2015-01-101-1/+2
* updated db_sqlite.nimAraq2014-08-291-20/+20
* Nimrod renamed to NimAraq2014-08-281-1/+1
* Avoids raising exceptions in tryInsertID.Grzegorz Adam Hankiewicz2014-01-291-2/+4
* better testerAraq2014-01-171-1/+1
* fixes db_sqliteAraq2014-01-131-20/+20
* Removes executable bit for text files.Grzegorz Adam Hankiewicz2013-03-161-0/+0
* Merge pull request #262 from gradha/pr_adds_some_documentation_to_db_modulesAraq2012-11-241-4/+7
|\
| * Documents NULL to "" db_* transformation and return values.Grzegorz Adam Hankiewicz2012-11-241-4/+7
* | fixes #250Araq2012-11-191-2/+2
|/
* 'assert' hides EAssertionFailsure; stdlib makes use of 'tags'Araq2012-11-181-16/+26
* Adds `$` as supplied proc to varargs in database modules.Grzegorz Adam Hankiewicz2012-10-201-10/+10
* bugfix: leak in db_sqlite.GetValueAraq2012-10-101-3/+5
* Fixes segfault in db_sqlite. Fixes problems with times.format.Dominik Picheta2012-10-071-2/+4
* openarray/varargs split; breaks bootstrappingAraq2012-08-161-12/+12
* changed integer promotion rules; breaks bootstrapping and lots of codeAraq2012-07-081-5/+5
* small bugfixes; documentation generator supports smilies for the forumAraq2012-05-011-1/+1
* some code formatingAraq2012-04-261-3/+2
* added db_*.getRowAraq2012-04-241-0/+10
* added system.setControlCHook, system.writeStackTraceAraq2012-02-191-1/+2
* year 2012 for most copyright headersAraq2012-01-021-1/+1
* much more efficient rod file generationAraq2011-10-181-2/+1
* bugfix: return type of gtk2.check_menu_item_new*Andreas Rumpf2010-03-171-1/+1
* fixed pango/pangoutils new wrappersAndreas Rumpf2010-02-261-0/+0
* SQLite wrapperAndreas Rumpf2010-02-241-0/+178
68 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738