Changeset 35582 in project
- Timestamp:
- 06/11/18 22:02:10 (3 years ago)
- Location:
- wiki/eggref/5
- Files:
-
- 2 copied
Legend:
- Unmodified
- Added
- Removed
-
wiki/eggref/5/postgresql
r35581 r35582 126 126 127 127 <enscript highlight="scheme"> 128 ( usepostgresql)128 (import postgresql) 129 129 130 130 (let ((conn (connect '((dbname . test))))) … … 147 147 148 148 <enscript highlight="scheme"> 149 ( usepostgresql)149 (import postgresql) 150 150 151 151 (let ((conn (connect '((dbname . test))))) … … 183 183 184 184 <enscript highlight="scheme"> 185 ( use postgresql)185 (import postgresql (chicken blob)) 186 186 187 187 (let ((conn (connect '((dbname . test))))) … … 213 213 214 214 <enscript highlight="scheme"> 215 ( usepostgresql)215 (import postgresql) 216 216 217 217 (let ((conn (connect '((dbname . test))))) … … 240 240 241 241 <enscript highlight="scheme"> 242 ( usepostgresql)242 (import postgresql) 243 243 244 244 (let ((conn (connect '((dbname . test))))) … … 269 269 270 270 <enscript highlight="scheme"> 271 ( usepostgresql)271 (import postgresql) 272 272 273 273 (let ((conn (connect '((dbname . test))))) … … 291 291 292 292 <enscript highlight="scheme"> 293 ( usepostgresql)293 (import postgresql) 294 294 295 295 (let ((conn (connect '((dbname . test))))) … … 304 304 305 305 <enscript highlight="scheme"> 306 ( usepostgresql)306 (import postgresql) 307 307 308 308 (let ((conn (connect '((dbname . test))))) … … 588 588 589 589 <enscript highlight="scheme"> 590 ( use postgresql)590 (import postgresql srfi-13) 591 591 592 592 (let ((conn (connect '((dbname . test))))) … … 625 625 626 626 <enscript highlight="scheme"> 627 ( use postgresql)627 (import postgresql (chicken string)) 628 628 629 629 (let ((conn (connect '((dbname . test))))) … … 654 654 655 655 <enscript highlight="scheme"> 656 ( usepostgresql)656 (import postgresql) 657 657 658 658 (with-output-to-copy-query … … 780 780 781 781 <enscript highlight="scheme"> 782 ( usepostgresql)782 (import postgresql) 783 783 784 784 (parameterize ((default-type-parsers `(("text" . ,string->symbol)))) … … 933 933 === Changelog 934 934 935 * 4.0.0 Port to CHICKEN 5. 935 936 * 3.9.4 If {{pkg-config}} doesn't know about {{libpq}}, don't use it. 936 937 * 3.9.3 Use {{pkg-config}} when available, for increased cross-compilability (thanks to Mario Goulart) -
wiki/eggref/5/sql-null
r35581 r35582 106 106 107 107 Public Domain 108 109 110 === Changelog 111 112 * 2.0 Port to CHICKEN 5
Note: See TracChangeset
for help on using the changeset viewer.