File: texttables.xml

package info (click to toggle)
hsqldb 1.8.0.7-1etch1
  • links: PTS
  • area: main
  • in suites: etch
  • size: 11,824 kB
  • ctags: 11,226
  • sloc: java: 71,953; xml: 10,832; sql: 1,038; sh: 875; makefile: 58
file content (498 lines) | stat: -rw-r--r-- 17,516 bytes parent folder | download | duplicates (2)
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
<?xml version="1.0" encoding="UTF-8"?>
<!-- $Id: texttables.xml,v 1.12 2005/06/29 23:15:13 fredt Exp $ -->
<chapter id="texttables-chapter">
  <title id="texttables-title">Text Tables</title>

  <subtitle>Text Tables as a Standard Feature of Hsqldb</subtitle>

  <chapterinfo>
    <authorgroup>
      <author>
        <firstname>Bob</firstname>

        <surname>Preston</surname>

        <affiliation>
          <orgname>HSQLDB Development Group</orgname>
        </affiliation>
      </author>

      <author>
        <firstname>Fred</firstname>

        <surname>Toussi</surname>

        <affiliation>
          <orgname>HSQLDB Development Group</orgname>
        </affiliation>

        <email>ft@cluedup.com</email>
      </author>
    </authorgroup>

    <edition>$Revision: 1.12 $</edition>

    <pubdate>$Date: 2005/06/29 23:15:13 $</pubdate>

    <keywordset>
      <keyword>Text</keyword>

      <keyword>Tables</keyword>
    </keywordset>

    <legalnotice>
      <para>Copyright 2002-2005 Bob Preston and Fred Toussi. Permission is
      granted to distribute this document without any alteration under the
      terms of the HSQLDB license. Additional permission is granted to the
      HSQLDB Development Group to distribute this document with or without
      alterations under the terms of the HSQLDB license.</para>
    </legalnotice>
  </chapterinfo>

  <para>Text Table support for HSQLDB was originally developed by Bob Preston
  independently from the Project. Subsequently Bob joined the Project and
  incorporated this feature into version 1.7.0, with a number of enhancements,
  especially the use of conventional SQL commands for specifying the files
  used for Text Tables.</para>

  <para>In a nutshell, Text Tables are CSV or other delimited files treated as
  SQL tables. Any ordinary CSV or other delimited file can be used. The full
  range of SQL queries can be performed on these files, including SELECT,
  INSERT, UPDATE and DELETE. Indexes and unique constraints can be set up, and
  foreign key constraints can be used to enforce referential integrity between
  Text Tables themselves or with conventional tables.</para>

  <para>HSQLDB with Text Table support is the only comprehensive solution that
  employs the power of SQL and the universal reach of JDBC to handle data
  stored in text files and will have wide-ranging use way beyond the currently
  established Java realm of HSQLDB.</para>

  <orderedlist>
    <title>Goals of the Implementation</title>

    <listitem>
      <para>We aimed to finalise the DDL for Text Tables so that future
      releases of HSQLDB use the same DDL scripts.</para>
    </listitem>

    <listitem>
      <para>We aimed to support Text Tables as GLOBAL TEMPORARY or GLOBAL BASE
      tables in the SQL domain.</para>
    </listitem>
  </orderedlist>

  <section>
    <title>The Implementation</title>

    <section>
      <title>Definition of Tables</title>

      <para>Text Tables are defined similarly to conventional tables with the
      added TEXT keyword:</para>

      <programlisting>
    CREATE TEXT TABLE &lt;tablename&gt; (&lt;column definition&gt; [&lt;constraint definition&gt;])</programlisting>

      <para>In addition, a SET command specifies the file and the separator
      character that the Text table uses:</para>

      <programlisting>
    SET TABLE &lt;tablename&gt; SOURCE &lt;quoted_filename_and_options&gt; [DESC]</programlisting>

      <para>Text Tables cannot be created in memory-only databases (databases
      that have no script file).</para>
    </section>

    <section>
      <title>Scope and Reassignment</title>

      <itemizedlist>
        <listitem>
          <para>A Text table without a file assigned to it is READ ONLY and
          EMPTY.</para>
        </listitem>

        <listitem>
          <para>A Temporary Text table has the scope and the lifetime of the
          SQL session (a JDBC Connection).</para>
        </listitem>

        <listitem>
          <para>Reassigning a Text Table definition to a new file has
          implications in the following areas:</para>

          <orderedlist>
            <listitem>
              <para>The user is required to be an administrator.</para>
            </listitem>

            <listitem>
              <para>Existing transactions are committed at this point.</para>
            </listitem>

            <listitem>
              <para>Constraints, including foreign keys referencing this
              table, are kept intact. It is the responsibility of the
              administrator to ensure their integrity.</para>
            </listitem>
          </orderedlist>

          <para>From version 1.7.2 the new source file is scanned and indexes
          are built when it is assigned to the table. At this point any
          violation of NOT NULL, UNIQUE or PRIMARY KEY constrainst are caught
          and the assignment is aborted. owever, foreign key constraints are
          not checked at the time of assignment or reassignment of the source
          file.</para>
        </listitem>
      </itemizedlist>
    </section>

    <section>
      <title>Null Values in Columns of Text Tables</title>

      <para>This has changed since 1.7.2 to support both null values and empty
      strings.</para>

      <itemizedlist>
        <listitem>
          <para>Empty fields are treated as NULL. These are fields where there
          is nothing or just spaces between the separators.</para>
        </listitem>

        <listitem>
          <para>Quoted empty strings are treated as empty strings.</para>
        </listitem>
      </itemizedlist>
    </section>

    <section>
      <title>Configuration</title>

      <para>The default field separator is a comma (,). A different field
      separator can be specified within the SET TABLE SOURCE statement. For
      example, to change the field separator for the table mytable to a
      vertical bar, place the following in the SET TABLE SOURCE statement, for
      example:</para>

      <informalexample>
        <programlisting>
    SET TABLE mytable SOURCE "myfile;fs=|"</programlisting>
      </informalexample>

      <para>Since HSQLDB treats CHAR's, VARCHARs, and LONGVARCHARs the same,
      the ability to assign different separators to the latter two is
      provided. When a different separator is assigned to a VARCHAR or
      LONGVARCHAR field, it will terminate any CSV field of that type. For
      example, if the first field is CHAR, and the second field LONGVARCHAR,
      and the separator fs has been defined as the pipe (|) and vs as the
      period (.) then the data in the CSV file for a row will look
      like:</para>

      <screen>
    First field data|Second field data.Third field data</screen>

      <para>The following example shows how to change the default separator to
      the pipe (|), VARCHAR separator to the period (.) and the LONGVARCHAR
      separator to the tilde (~). Place the following within the SET TABLE
      SOURCE statement, for example:</para>

      <informalexample>
        <programlisting>
    SET TABLE mytable SOURCE "myfile;fs=|;vs=.;lvs=~"</programlisting>
      </informalexample>

      <para>HSQLDB also recognises the following special indicators for
      separators:</para>

      <variablelist>
        <title>special indicators for separators</title>

        <varlistentry>
          <term>\semi</term>

          <listitem>
            <para>semicolon</para>
          </listitem>
        </varlistentry>

        <varlistentry>
          <term>\quote</term>

          <listitem>
            <para>qoute</para>
          </listitem>
        </varlistentry>

        <varlistentry>
          <term>\space</term>

          <listitem>
            <para>space character</para>
          </listitem>
        </varlistentry>

        <varlistentry>
          <term>\apos</term>

          <listitem>
            <para>apostrophe</para>
          </listitem>
        </varlistentry>

        <varlistentry>
          <term>\n</term>

          <listitem>
            <para>newline - Used as an end anchor (like $ in regular
            expressions)</para>
          </listitem>
        </varlistentry>

        <varlistentry>
          <term>\r</term>

          <listitem>
            <para>carriage return</para>
          </listitem>
        </varlistentry>

        <varlistentry>
          <term>\t</term>

          <listitem>
            <para>tab</para>
          </listitem>
        </varlistentry>

        <varlistentry>
          <term>\\</term>

          <listitem>
            <para>backslash</para>
          </listitem>
        </varlistentry>

        <varlistentry>
          <term>\u####</term>

          <listitem>
            <para>a Unicode character specified in hexadecimal</para>
          </listitem>
        </varlistentry>
      </variablelist>

      <para>Furthermore, HSQLDB provides csv file support with three
      additional boolean options: <literal>ignore_first</literal>,
      <literal>quoted</literal> and <literal>all_quoted</literal>. The
      <literal>ignore_first</literal> option (default false) tells HSQLDB to
      ignore the first line in a file. This option is used when the first line
      of the file contains column headings. The <literal>all_quoted</literal>
      option (default false) tells the program that it should use quotes
      around all character fields when writing to the source file. The
      <literal>quoted</literal> option (default true) uses quotes only when
      necessary to distinguish a field that contains the separator character.
      It can be set to false to prevent the use of quoting altogether and
      treat quote characters as normal characters. These options may be
      specified within the <literal>SET TABLE SOURCE</literal>
      statement:</para>

      <programlisting>
    SET TABLE mytable SOURCE "myfile;ignore_first=true;all_quoted=true"</programlisting>

      <para>When the default options <literal>all_quoted=</literal>
      <literal>false</literal> and <literal>quoted=true</literal> are in
      force, fields that are written to a line of the csv file will be quoted
      only if they contain the separator or the quote character. The quote
      character is doubled when used inside a string. When
      <literal>all_quoted=false</literal> and <literal>quoted=false</literal>
      the quote character is not doubled. With this option, it is not possible
      to insert any string containing the separator into the table, as it
      would become impossible to distinguish from a separator. While reading
      an existing data source file, the program treats each individual field
      separately. It determines that a field is quoted only if the first
      character is the quote character. It interprets the rest of the field on
      this basis.</para>

      <para>The character encoding for the source file is<literal> ASCII
      </literal>by default. To support UNICODE or source files preprared with
      different encodings this can be changed to <literal>UTF-8</literal> or
      any other encoding. The default is <literal>encoding=ASCII </literal>and
      the option <literal>encoding=UTF-8</literal> or other supported
      encodings can be used.</para>

      <para>Finally, HSQLDB provides the ability to read a text file from the
      bottom up and making them READ ONLY, by placing the keyword "DESC" at
      the end of the SET TABLE SOURCE statement:</para>

      <programlisting>
    SET TABLE mytable SOURCE "myfile" DESC</programlisting>

      <para>This feature provides functionality similar to the Unix tail
      command, by re-reading the file each time a select is executed. Using
      this feature sets the table to read-only mode. Afterwards, it will no
      longer be possible to change the read-only status with <literal>SET
      TABLE &lt;tablename&gt; READONLY TRUE</literal>.</para>

      <para>Text table source files are cached in memory. The maximum number
      of rows of data that are in memory at any time is controlled by the
      <literal>textdb.cache_scale </literal> property. The default value for
      <literal>textdb.cache_scale</literal> is 10 and can be changed by
      setting the property in the .properties file for the database. The
      number of rows in memory is calculated as 3*(2**scale), which translates
      to 3072 rows for the default textdb.cache_scale setting (10). The
      property can also be set for individual text tables:</para>

      <programlisting>
    SET TABLE mytable SOURCE "myfile;ignore_first=true;all_quoted=true;cache_scale=12"</programlisting>
    </section>
  </section>

  <!-- Blaine adding section here because otherwise the resultant documents
         looke exactly like the following is all part of the Implementation
         section. -->

  <section>
    <title>Text File Issues</title>

    <itemizedlist>
      <title>Text File Issues</title>

      <listitem>
        <para>File locations are restricted to below the directory that
        contains the database, unless the textdb.allow_full_path property is
        set true in the database properties file.</para>
      </listitem>

      <listitem>
        <para>Blank lines are allowed anywhere in the text file, and are
        ignored.</para>
      </listitem>

      <listitem>
        <para>The file location for a text table created with</para>

        <programlisting>
    SELECT &lt;select list&gt; INTO TEXT &lt;tablename&gt; FROM</programlisting>

        <para>is the directory that contains the database and the file name is
        based on the table name. The table name is converted into the file
        name by replacing all the non-alphanumeric characters with the
        underscore character, conversion into lowercase, and adding the ".csv"
        suffix.</para>
      </listitem>

      <listitem>
        <para>From version 1.7.2 it is possible to define a primay key or
        identity column for text tables.</para>
      </listitem>

      <listitem>
        <para>When a table source file is used with the<literal>
        ignore_first=true </literal>option, the first, ignored line is
        replaced with a blank line after a SHUTDOWN COMPACT.</para>
      </listitem>

      <listitem>
        <para>An existing table source file may include CHARACTER fields that
        do not begin with the quote character but contain instances of the
        quote character. These fields are read as literal strings.
        Alternatively, if any field begins with the quote character, then it
        is interpreted as a quoted string that should end with the quote
        character and any instances of the quote character within the string
        is doubled. When any field containing the quote character or the
        separator is written out to the source file by the program, the field
        is enclosed in quote character and any instance of the quote character
        inside the field is doubled.</para>
      </listitem>

      <listitem>
        <para>Inserts or updates of CHARACTER type field values are allowed
        with strings that contains the linefeed or the carriage return
        character. This feature is disabled when both quoted and all_quoted
        properties are false.</para>
      </listitem>
    </itemizedlist>
  </section>

  <!-- See my comment for the previous section. -->

  <section>
    <title>Text File Global Properties</title>

    <itemizedlist>
      <title>Complete list of supported global properties in *.properties
      files</title>

      <listitem>
        <para>
          <literal>textdb.fs</literal>
        </para>
      </listitem>

      <listitem>
        <para>
          <literal>textdb.lvs</literal>
        </para>
      </listitem>

      <listitem>
        <para>
          <literal>textdb.quoted</literal>
        </para>
      </listitem>

      <listitem>
        <para>
          <literal>textdb.all_quoted</literal>
        </para>
      </listitem>

      <listitem>
        <para>
          <literal>textdb.ignore_first</literal>
        </para>
      </listitem>

      <listitem>
        <para>
          <literal>textdb.encoding</literal>
        </para>
      </listitem>

      <listitem>
        <para>
          <literal>textdb.cache_scale</literal>
        </para>
      </listitem>

      <listitem>
        <para>
          <literal>textdb.allow_full_path</literal>
        </para>
      </listitem>
    </itemizedlist>
  </section>

  <section>
    <title>Importing a Text Table file in to a Traditional (non-Text Table)
    Table</title>

    <titleabbrev>Importing from a Text Table file</titleabbrev>

    <simpara>The directory <filename>src/org/hsqldb/sample</filename> in your
    HSQLDB distibution contains a file named
    <filename>load_binding_lu.sql</filename>. This is a working SQL file which
    imports a pipe-delimited text file from the database's file directory into
    an existing normal table. You can edit a copy of this file and use it
    directly with <link linkend="sqltool-chapter">SqlTool</link>, or you can
    use the SQL therein as a model (using any SQL client at all).</simpara>

    <!--
        <example><title>
                SQL File which imports a text file into a traditional table
            </title>
            <programlisting>&load_binding_lu.sql-cdata;</programlisting>
        </example>
        -->
  </section>
</chapter>