(by-created-at db created-at & [opts])
Find all rows in db
by created-at
.
Find all rows in `db` by `created-at`.
(by-height db height & [opts])
Find all rows in db
by height
.
Find all rows in `db` by `height`.
(by-id db id & [opts])
Find all rows in db
by id
.
Find all rows in `db` by `id`.
(by-label db label & [opts])
Find all rows in db
by label
.
Find all rows in `db` by `label`.
(by-media db media & [opts])
Find all rows in db
by media
.
Find all rows in `db` by `media`.
(by-photo-id db photo-id & [opts])
Find all rows in db
by photo-id
.
Find all rows in `db` by `photo-id`.
(by-source db source & [opts])
Find all rows in db
by source
.
Find all rows in `db` by `source`.
(by-updated-at db updated-at & [opts])
Find all rows in db
by updated-at
.
Find all rows in `db` by `updated-at`.
(by-url db url & [opts])
Find all rows in db
by url
.
Find all rows in `db` by `url`.
(by-width db width & [opts])
Find all rows in db
by width
.
Find all rows in `db` by `width`.
(delete! db record & [opts])
Delete the record
from db
.
Delete the `record` from `db`.
(delete-all! db records & [opts])
Delete all records
from db
.
Delete all `records` from `db`.
(exists? db record)
Returns true if the record
exists in db
, otherwise false.
Returns true if the `record` exists in `db`, otherwise false.
(gen)
(gen db)
A generator that produces rows for the :photo-sizes table.
A generator that produces rows for the :photo-sizes table.
(insert! db record & [opts])
Insert record
into the db
.
Insert `record` into the `db`.
(insert-all! db records & [opts])
Insert all records
into the db
.
Insert all `records` into the `db`.
(photo-size? x)
Return true if x
is a photo-size, otherwise false.
Return true if `x` is a photo-size, otherwise false.
(save-all! db records & [opts])
Save all records
to db
.
Save all `records` to `db`.
(select-batch db rows & [opts])
Select the batch of photo-sizes rows from table.
Select the batch of photo-sizes rows from table.
(truncate! db & [opts])
Truncate the photo-sizes table.
Truncate the photo-sizes table.
(update! db record & [opts])
Update record
in the db
.
Update `record` in the `db`.
(update-all! db records & [opts])
Update all records
in the db
.
Update all `records` in the `db`.
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close