File: package.lisp

package info (click to toggle)
cl-ixf 20180228-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 96 kB
  • sloc: lisp: 675; makefile: 13
file content (69 lines) | stat: -rw-r--r-- 1,739 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
(defpackage #:ixf
  (:use :cl)
  (:import-from #:split-sequence #:split-sequence)
  (:export #:with-ixf-stream
           #:with-ixf-file
           #:read-headers
           #:map-data
           #:read-data
           #:read-ixf-file
           #:read-next-record
           #:read-next-row

           ;; header structures
           #:ixf-header
           #:ixf-header-date
           #:ixf-header-time
           #:ixf-header-count
           #:ixf-header-code-page
           #:ixf-header-encoding

           #:ixf-column
           #:ixf-column-name
           #:ixf-column-nullable
           #:ixf-column-has-default
           #:ixf-column-default
           #:ixf-column-pkey-pos
           #:ixf-column-type
           #:ixf-column-desc

           #:ixf-table
           #:ixf-table-name
           #:ixf-table-creator
           #:ixf-table-source
           #:ixf-table-ncol
           #:ixf-table-columns
           #:ixf-table-pkey-name
           #:ixf-table-desc

           #:make-ixf-file
           #:ixf-file
           #:ixf-file-p
           #:ixf-file-header
           #:ixf-file-table

           ;; data types
           #:+bigint+
           #:+blob+
           #:+clob+
           #:+blob-file+
           #:+clob-file+
           #:+dbclob-file+
           #:+char+
           #:+date+
           #:+dbclob+
           #:+decimal+
           #:+decfloat+
           #:+float+
           #:+graphic+
           #:+integer+
           #:+longvarchar+
           #:+longvargraphic+
           #:+smallint+
           #:+time+
           #:+timestamp+
           #:+varchar+
           #:+vargraphic+
           #:+blob-location-spec+
           #:+dbclob-location-spec+
           #:+dbblob-location-spec+))