diff sqlpyPlus.py @ 94:5df8e2477ca3

command-line args working
author catherine@cordelia
date Sun, 25 May 2008 05:22:34 -0400
parents fa8c9eb8908f
children 84a26822e28c
line wrap: on
line diff
--- a/sqlpyPlus.py	Sun May 25 01:39:25 2008 -0400
+++ b/sqlpyPlus.py	Sun May 25 05:22:34 2008 -0400
@@ -326,7 +326,6 @@
 
 pipeSeparator = Parser(pyparsing.SkipTo((pyparsing.Literal('|') ^ pyparsing.StringEnd()), include=True), retainSeparator=False) 
 bindScanner = Parser(pyparsing.Literal(':') + pyparsing.Word( pyparsing.alphanums + "_$#" ))
-commandSeparator = Parser(pyparsing.SkipTo((pyparsing.Literal(';') ^ pyparsing.StringEnd()), include=True))
 
 def findBinds(target, existingBinds, givenBindVars = {}):
     result = givenBindVars