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
|
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.4//EN" "http://www.oasis-open.org/docbook/xml/4.4/docbookx.dtd">
<refentry id='spatialite_xml_print'>
<refmeta>
<refentrytitle>spatialite_xml_print</refentrytitle>
<manvolnum>1</manvolnum>
</refmeta>
<refnamediv>
<refname>spatialite_xml_print</refname>
<refpurpose>export a single XML file corresponding to the current DB-file content</refpurpose>
</refnamediv>
<refsynopsisdiv id='synopsis'>
<cmdsynopsis>
<command>spatialite_xml_print</command>
<arg choice='opt'><option>-h</option></arg>
<arg choice='opt'><option>-d</option> <replaceable>pathname</replaceable></arg>
<arg choice='opt'><option>-x</option> <replaceable>pathname</replaceable></arg>
<arg choice='opt'><option>-cs</option> <replaceable>num</replaceable></arg>
<arg choice='opt'><option>-m</option></arg>
</cmdsynopsis>
</refsynopsisdiv>
<refsect1 id='description'>
<title>DESCRIPTION</title>
<para>
<command>spatialite_xml_print</command> is intended to export a single
XML file corresponding to the current DB-file content.
</para>
<para>
It's useful i.e. when you've some way modified the original contents by
performing some SQL operation.
</para>
</refsect1>
<refsect1 id='options'>
<title>OPTIONS</title>
<variablelist>
<varlistentry>
<term><option>-h</option></term>
<term><option>--help</option></term>
<listitem>
<para>show help message</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>-d</option> <replaceable>pathname</replaceable></term>
<term><option>--db-path</option> <replaceable>pathname</replaceable></term>
<listitem>
<para>the SpatiaLite DB [INPUT] path</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>-x</option> <replaceable>pathname</replaceable></term>
<term><option>--xml-path</option> <replaceable>pathname</replaceable></term>
<listitem>
<para>the XML file [OUTPUT] path</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>-cs</option> <replaceable>num</replaceable></term>
<term><option>--cache-size</option> <replaceable>num</replaceable></term>
<listitem>
<para>DB cache size (how many pages)</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>-m</option></term>
<term><option>--in-memory</option></term>
<listitem>
<para>using IN-MEMORY database</para>
</listitem>
</varlistentry>
</variablelist>
</refsect1>
</refentry>
|