Skip to content
New issue

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

API: Key-based operations #21

Closed
edrdo opened this issue Jun 3, 2017 · 0 comments
Closed

API: Key-based operations #21

edrdo opened this issue Jun 3, 2017 · 0 comments
Milestone

Comments

@edrdo
Copy link
Member

edrdo commented Jun 3, 2017

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
@edrdo edrdo added the feature label Jun 3, 2017
@edrdo edrdo added this to the 0.13 milestone Jun 3, 2017
edrdo added a commit that referenced this issue Jun 5, 2017
…failing too for MySQL and PostgreSQL [skip ci]
edrdo added a commit that referenced this issue Jun 5, 2017
edrdo added a commit that referenced this issue Jun 10, 2017
@edrdo edrdo added the api label Jun 16, 2017
@edrdo edrdo changed the title Key-based operations API: Key-based operations Jun 16, 2017
@edrdo edrdo closed this as completed in 31d9970 Jun 26, 2017
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Development

No branches or pull requests

1 participant