Table creation: Difference between revisions

Content added Content deleted
Line 10: Line 10:


AWK is just a glue language. Simply pipe the creation command into SQLite and capture the output.
AWK is just a glue language. Simply pipe the creation command into SQLite and capture the output.


<lang awk>#!/bin/sh -f
<lang awk>#!/bin/sh -f
awk '
awk '
Line 19: Line 17:
exit;
exit;
}
}
'</lang>
'
</lang>



=={{header|J}}==
=={{header|J}}==