java/sql-dk/version-info.sh
author František Kučera <franta-hg@frantovo.cz>
Fri, 04 Apr 2014 23:40:28 +0200
branchv_0
changeset 171 701ec4db43fb
parent 109 aef98fd7c7c9
permissions -rwxr-xr-x
JDBC loopback driver: first version
experimental JDBC driver which does not need any real SQL database,
just passes values of statement parameters as a result set.
The first parameter is column count, then follows column names and then data.

Example:

2 a b c d e f

will result into table:

a | b
-----
c | d
e | f
franta-hg@18
     1
#!/bin/bash
franta-hg@18
     2
franta-hg@109
     3
echo "SQL-DK";
franta-hg@18
     4
echo -n "Mercurial: "; hg identify || echo "n/a";
franta-hg@18
     5
echo -n "Compiled:  "; date --rfc-3339=seconds;
franta-hg@109
     6
echo "
franta-hg@109
     7
Copyright © 2013 Ing. František Kučera a.k.a. <xkucf03/> 
franta-hg@109
     8
https://sql-dk.globalcode.info/ https://frantovo.cz/
franta-hg@109
     9
SQL-DK is free softare. You may redistribute copies of SQL-DK
franta-hg@109
    10
under the terms of the GNU General Public License v3+.
franta-hg@109
    11
For more information about these matters, run with option: --license";