From 94bd4e3da713e412a56582ed516ea23af5f96877 Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Mon, 10 May 1999 16:10:51 +0000 Subject: Update to PyGreSQL 2.3. --- src/interfaces/python/tutorial/pgtools.py | 47 ------------------------------- 1 file changed, 47 deletions(-) delete mode 100755 src/interfaces/python/tutorial/pgtools.py (limited to 'src/interfaces/python/tutorial/pgtools.py') diff --git a/src/interfaces/python/tutorial/pgtools.py b/src/interfaces/python/tutorial/pgtools.py deleted file mode 100755 index 738d221c1c5..00000000000 --- a/src/interfaces/python/tutorial/pgtools.py +++ /dev/null @@ -1,47 +0,0 @@ -#! /usr/local/bin/python -# pgtools.py - valuable functions for PostGreSQL tutorial -# written 1995 by Pascal ANDRE - -import sys - -# number of rows -scr_size = 24 - -# waits for a key -def wait_key(): - print "Press " - sys.stdin.read(1) - -# displays a table for a select query result -def display(fields, result): - # gets cols width - fmt = [] - sep = '+' - head = '|' - for i in range(0, len(fields)): - max = len(fields[i]) - for j in range(0, len(result)): - if i < len(result[j]): - if len(result[j][i]) > max: - max = len(result[j][i]) - fmt.append(" %%%ds |" % max) - for j in range(0, max): - sep = sep + '-' - sep = sep + '--+' - for i in range(0, len(fields)): - head = head + fmt[i] % fields[i] - print sep + '\n' + head + '\n' + sep - pos = 6 - for i in range(0, len(result)): - str = '|' - for j in range(0, len(result[i])): - str = str + fmt[j] % result[i][j] - print str - pos = pos + 1 - if pos == scr_size: - print sep - wait_key() - print sep + '\n' + head + '\n' + sep - pos = 6 - print sep - wait_key() -- cgit v1.2.3