# HG changeset patch # User jjohnson # Date 1443970272 14400 # Node ID bc50a7b7f246cedc5d781e8f5ba06a95dfac577d # Parent 1819a06a01eb495c104db93e0c2506947bf489d7 Uploaded diff -r 1819a06a01eb -r bc50a7b7f246 sqlite_to_tabular.py --- a/sqlite_to_tabular.py Sun Oct 04 09:50:54 2015 -0400 +++ b/sqlite_to_tabular.py Sun Oct 04 10:51:12 2015 -0400 @@ -10,6 +10,7 @@ parser = optparse.OptionParser() parser.add_option( '-s', '--sqlitedb', dest='sqlitedb', default=None, help='The SQLite Database' ) parser.add_option( '-q', '--query', dest='query', default=None, help='SQL query' ) + parser.add_option( '-Q', '--query_file', dest='query_file', default=None, help='SQL query file' ) parser.add_option( '-n', '--no_header', dest='no_header', action='store_true', default=False, help='Include a column headers line' ) parser.add_option( '-o', '--output', dest='output', default=None, help='Output file for query results' ) (options, args) = parser.parse_args() @@ -25,7 +26,16 @@ else: outputFile = sys.stdout - if (options.query is None): + query = None + if (options.query_file != None): + with open(options.query_file,'r') as fh: + query = '' + for line in fh: + query += line + elif (options.query != None): + query = options.query + + if (query is None): try: conn = sqlite.connect(options.sqlitedb) c = conn.cursor() @@ -42,14 +52,14 @@ print >> sys.stderr, "Error: %s" % exc except Exception, exc: print >> sys.stderr, "Error: %s" % exc - exit(1) - #if not sqlite.is_read_only_query(options.query): + exit(0) + #if not sqlite.is_read_only_query(query): # print >> sys.stderr, "Error: Must be a read only query" # exit(2) try: conn = sqlite.connect(options.sqlitedb) cur = conn.cursor() - results = cur.execute(options.query) + results = cur.execute(query) if not options.no_header: outputFile.write("#%s\n" % '\t'.join([str(col[0]) for col in cur.description])) # yield [col[0] for col in cur.description] diff -r 1819a06a01eb -r bc50a7b7f246 sqlite_to_tabular.xml --- a/sqlite_to_tabular.xml Sun Oct 04 09:50:54 2015 -0400 +++ b/sqlite_to_tabular.xml Sun Oct 04 10:51:12 2015 -0400 @@ -1,42 +1,46 @@ - for SQL query - - - - - sqlite_to_tabular.py - --sqlitedb="$sqlitedb" - --query='$sqlquery' - $no_header - --output="$query_results" - - - - - ^(?im)\s*SELECT\s.*\sFROM\s.*$ - - - - - - - - - - - - - - - - - - - - - - Outputs the results of a query on a SQLite Database as a tabular file. - + for SQL query + + + + + +$sqlquery + + + + + sqlite_to_tabular.py + --sqlitedb="$sqlitedb" + --query_file="$query_file" + $no_header + --output="$query_results" + + + + + ^(?im)\s*SELECT\s.*\sFROM\s.*$ + + + + + + + + + + + + + + + + + + + + + Outputs the results of a query on a SQLite Database as a tabular file. +