Skip to content

Instantly share code, notes, and snippets.

View Juerd's full-sized avatar

Juerd Waalboer Juerd

  • TNX
  • Netherlands
View GitHub Profile
@Juerd
Juerd / db-shell.p6
Last active January 22, 2016 16:21 — forked from Ovid/db-shell.p6
A naïve db client in Perl 6
# a rewrite of http://blogs.perl.org/users/ovid/2016/01/a-naive-sql-shell.html in Perl 6
use v6;
use DBIish;
use Linenoise;
use Text::Table::Simple;
my constant HIST-FILE = '.myhist';
my constant HIST-LEN = 100;
my constant ROW-LIMIT = 100;