Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
*.st linguist-language=Smalltalk
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
unit_tests.db
CHANGELOG.template
unit_tests.db
43 changes: 36 additions & 7 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,41 @@
# CHANGELOG.md

# 1.13 (2025-01-29)
# 1.19 (2026-04-11)

* fix: Use authorInitials in ODBCConnection >> workstationId
* fix: add requirement for Network-kernel package
* Improvement of the documentation
## Added

# 1.12 (2025-01-09)
* `ODBCConnection class >> dsn:` for a data source that does not require authentication.
* Optional `Tests-ODBC` package for unit tests.
* Documentation about unit tests.
* The project's language is set to `Smalltalk` on GitHub.
* A logo for the project :)

* fix: ODBCStatement >> Execute: now supports SQL request with Unicode characters,
* fix: ODBCColumn >> stringFromBuffer now supports SQL columns with Unicode Characters.
## Fixed

* `SQLInteger` class uses 32-bit values instead of 64-bit values (https://www.unixodbc.org/doc/ODBC64.html).
* Incorrect `TimeStamp` class in `ODBColumn >> dateTimeData` (replaced by the `DateTime` class).
* An argument of a parameterized query can now contain a string.
* Support of UTF8 strings in ODBCStatement >> fillArg:with:
* Improvement of the documentation for the SQLite data source.

## Removed

* Unnecessary and broken `ODBCResultTable` class.

# 1.13 (2026-03-15)

## Changed

* Improvement of the documentation.
* Requirement for `Network-kernel package`.

## Fixed

* Use `authorInitials` in `ODBCConnection >> workstationId`.

# 1.12 (2026-01-09)

## Fixed

* `ODBCStatement >> Execute:` now supports SQL request with Unicode characters.
* `ODBCColumn >> stringFromBuffer` now supports SQL columns with Unicode Characters.
Loading