info.ss
#lang setup/infotab
(define name "SQLite 3 FFI")
(define release-notes
  (list '(ul
          (li "Bug in handling of returned NULL values"))
        '(ul
          (li "Fixed a 64-bit bug")
          (li "Does not use malloc anymore")
          (li "select/exec/insert are now implemented in PLT Scheme, which causes them to have backwards incompatible contracts")
          (li "select/exec/insert now support parameters for loading into the implicit statement")
          (li "The FFI now has contracts"))))
(define repositories
  (list "4.x"))
(define blurb
  (list "Allows access to SQLite databases."))
(define scribblings '(("sqlite.scrbl" ())))
(define primary-file "sqlite.ss")
(define categories '(io))