No description
Find a file
2018-04-05 13:09:32 +02:00
src/ndbex updated to work with Nim 0.18 2018-04-05 12:49:57 +02:00
.gitignore Initial commit 2015-09-16 17:30:32 +02:00
LICENSE Initial commit 2015-09-16 17:30:32 +02:00
ndbex.nimble hopefuly more understandable readme 2018-04-05 13:09:32 +02:00
README.md hopefuly more understandable readme 2018-04-05 13:09:32 +02:00

nim-db-ex

A small extension to Nim's db_* modules

About:

This library is a small extension for Nim's db_* modules that uses new type RowNew
Importing those extensions will also import Nim's db_* modules.

Contents:

Adds:

  • New type RowNew tuple[hasData: bool,data: seq[string]]
  • Convenience proc hasData() for string, Row & seq[Row]
  • Convenience proc getValueNew() - returns tuple[hasData: bool, data: string]
  • Basic procedures for the new type:
    getRowNew(), getAllRowsNew(), & iterators fastRowsNew(), rowsNew