-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
149 additions
and
70 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
# Package | ||
|
||
version = "0.2.1" | ||
version = "0.3.0" | ||
author = "Zolern" | ||
description = "adodb - simple access to Microsoft ADO databases" | ||
license = "MIT" | ||
skipDirs = @["examples", "docs"] | ||
|
||
# Dependencies | ||
|
||
requires "nim >= 0.19.0", "winim >= 3.1.1" | ||
requires "nim >= 0.19.6", "winim >= 3.1.1" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
switch("threads", "on") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
Version 0.3.0 | ||
-------------- | ||
* better memory management | ||
* better exception management | ||
* all db calls in separate thread | ||
* no more errors in db driver (>10 millions read/writes without crashing) | ||
* update examples | ||
|
||
Version 0.2.1 | ||
------------- | ||
* support updated winim 3.1 | ||
* conform nim 0.20 | ||
|
||
Version 0.2.0 | ||
------------- | ||
* support updated winim 3.0 | ||
* conform nim 0.19 | ||
|
||
Version 0.1.0 | ||
------------- | ||
* Initial release | ||
* exec and query methods | ||
* SQL literal interpolation | ||
* timestamp custom format | ||
* NULL variant processing | ||
* data aggregation functions (DSum, DMax, DCount, etc.) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters