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

Insert/Update/Delete operations #25

Open
3 tasks done
marcotas opened this issue Aug 1, 2022 · 0 comments · Fixed by #31
Open
3 tasks done

Insert/Update/Delete operations #25

marcotas opened this issue Aug 1, 2022 · 0 comments · Fixed by #31
Assignees
Milestone

Comments

@marcotas
Copy link
Contributor

marcotas commented Aug 1, 2022

// insert
DB.table('users').insert({'name': 'Marco', 'email': 'some@mail.com'});

// update
DB.table('users').update({'email': 'fixed@mail.com'});

// delete
DB.table('users')
  ..where('active').isFalse
  .delete()

Tasks

  • Insert
  • Update
  • Delete
@marcotas marcotas changed the title Insert and Update operations Insert/Update/Delete operations Aug 1, 2022
@marcotas marcotas self-assigned this Aug 5, 2022
@marcotas marcotas added this to the v1.0.0 milestone Aug 13, 2022
@marcotas marcotas linked a pull request Aug 13, 2022 that will close this issue
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
Status: 📖 Documenting
Development

Successfully merging a pull request may close this issue.

1 participant