-
Notifications
You must be signed in to change notification settings - Fork 20
Query builders
sdrapkin edited this page Jan 30, 2017
·
1 revision
TinyORM ships with a set of convenient helper methods to generate SQL
for common scenarios:
INSERT
UPDATE
-
UPDATE
with Snapshots (partialUPDATE
) DELETE
-
MERGE
(ex. could be used forUPSERT
-like behavior)
However, you can easily create your own custom methods for convenient SQL
generation specific to your needs.
(the easiest way to start is by looking at the implementation of built-in generators)
Copyright (c) 2016-2022 Stan Drapkin