We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Intended functionality - example sketch:
DB db = ... ; Table t = table("MyTable") .columns("k1", "k2", "c1", "c2", ...) .keys("k1","k2") // specify columns to consider as primary keys .build(db); DataSet data = data(t).row(vk1, vk2, vc1, vc2, ...) .row( ....) ... delete(data); or update(data); // key-based operations
The text was updated successfully, but these errors were encountered:
Preliminary support for #21 - still fragile & unpolished, some tests …
83290e8
…failing too for MySQL and PostgreSQL [skip ci]
Workaround for failing tests - #21
1441d34
Support for #21
32a619e
Partial documentation for data set updates/deletes - #21 [skip ci]
3029374
JDBDT: documentation adjustments for #21 [skip ci]
e73aa82
31d9970
No branches or pull requests
Intended functionality - example sketch:
The text was updated successfully, but these errors were encountered: