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
Utility method for fetching a record by its primary key.
Accepts a single value (for primary key / rowid tables) or a list/tuple of values (for compound primary keys, refs #36).
Raises a NotFoundError if the record cannot be found.
NotFoundError
The text was updated successfully, but these errors were encountered:
c65b67c
.get() method plus support for compound primary keys (#40)
29fd397
* create_table now handles compound primary keys * CLI now accepts multiple --pk for compound primary keys * Docs for compound primary keys with CLI and Python library * New .get() method plus documentation Closes #36, closes #39
No branches or pull requests
Utility method for fetching a record by its primary key.
Accepts a single value (for primary key / rowid tables) or a list/tuple of values (for compound primary keys, refs #36).
Raises a
NotFoundError
if the record cannot be found.The text was updated successfully, but these errors were encountered: