Overview
Comment: | Updated DBI egg for chicken 5 |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | v1.70-refactor02-chicken5 | v1.70-defunct-try |
Files: | files | file ages | folders |
SHA1: |
80e66f4369f704fafd18e24894599763 |
User & Date: | jmoon18 on 2020-01-02 15:47:49 |
Other Links: | branch diff | manifest | tags |
Context
2020-01-02
| ||
15:54 | Fixes for autoload egg for chicken 5 check-in: 37f61c54ae user: jmoon18 tags: v1.70-refactor02-chicken5, v1.70-defunct-try | |
15:47 | Updated DBI egg for chicken 5 check-in: 80e66f4369 user: jmoon18 tags: v1.70-refactor02-chicken5, v1.70-defunct-try | |
15:45 | Fixed pathname-expand egg for chicken 5 check-in: 2f7180aa77 user: jmoon18 tags: v1.70-refactor02-chicken5, v1.70-defunct-try | |
Changes
Added dbi/dbi.egg version [ce14ed7e9e].
> > > > > | 1 2 3 4 5 | ((license "BSD") (category db) (dependencies autoload sql-null) (test-dependencies test) (components (extension dbi))) |
Modified dbi/dbi.scm from [34d778274f] to [0d4d10831e].
︙ | ︙ | |||
52 53 54 55 56 57 58 | pgdatetime-get-microsecond pgdatetime-set-year! pgdatetime-set-month! pgdatetime-set-day! pgdatetime-set-hour! pgdatetime-set-minute! pgdatetime-set-second! pgdatetime-set-microsecond! lazy-bool) | | | | 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 | pgdatetime-get-microsecond pgdatetime-set-year! pgdatetime-set-month! pgdatetime-set-day! pgdatetime-set-hour! pgdatetime-set-minute! pgdatetime-set-second! pgdatetime-set-microsecond! lazy-bool) (import (chicken base) (chicken process) (chicken file) (chicken time) (chicken string) (chicken format) (chicken time posix) scheme srfi-1 srfi-13) (import (chicken condition) autoload sql-null) (define-record-type db (make-db dbtype dbconn) db? (dbtype db-dbtype db-dbtype-set!) (dbconn db-conn db-conn-set!)) |
︙ | ︙ |