Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/fukamachi/ponzu.db
O/R Mapper, a part of Ponzu Framework, for Common Lisp
https://github.com/fukamachi/ponzu.db
Last synced: 13 days ago
JSON representation
O/R Mapper, a part of Ponzu Framework, for Common Lisp
- Host: GitHub
- URL: https://github.com/fukamachi/ponzu.db
- Owner: fukamachi
- Created: 2011-02-13T06:51:35.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2011-02-25T10:04:42.000Z (over 13 years ago)
- Last Synced: 2024-05-02T01:14:47.602Z (7 months ago)
- Language: Common Lisp
- Homepage:
- Size: 183 KB
- Stars: 6
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.markdown
Awesome Lists containing this project
README
# PonzuDB - O/R Mapper for Common Lisp
PonzuDB is an O/R Mapper for Common lisp, based on CLSQL.
## Usage
(deftable person ()
((id
:db-kind :key
:type integer)
(name
:type string
:initform ""
:accessor name)))
(let ((me (make-instance 'person)))
(setf (name me) "Eitarow Fukamachi")
(save me))
(fetch person :first)
;;=> ### Schema Definition
## Find Records
## New Records
## Delete Records
## Functions
### Table* deftable
* create
* fetch### Record
* save
* destroy
* attributes## Author
* Eitarow Fukamachi
## Copyright
Copyright (c) 2011 Eitarow Fukamachi
## License
Licensed under the LLGPL License.