Skip to content

Commit

Permalink
Merge pull request #630 from gissehel/sqlite_query_runner
Browse files Browse the repository at this point in the history
Feature: SQLite query runner
  • Loading branch information
arikfr committed Nov 5, 2015
2 parents 67aecc0 + e0a43a3 commit aa04a6e
Show file tree
Hide file tree
Showing 2 changed files with 97 additions and 0 deletions.
96 changes: 96 additions & 0 deletions redash/query_runner/sqlite.py
@@ -0,0 +1,96 @@
import json
import logging
import sqlite3
import sys

from redash.query_runner import BaseQueryRunner
from redash.query_runner import TYPE_STRING
from redash.query_runner import register

from redash.utils import JSONEncoder

logger = logging.getLogger(__name__)

class Sqlite(BaseQueryRunner):
@classmethod
def configuration_schema(cls):
return {
"type": "object",
"properties": {
"dbpath": {
"type": "string",
"title": "Database Path"
}
},
"required": ["dbpath"],
}

@classmethod
def type(cls):
return "sqlite"

def __init__(self, configuration_json):
super(Sqlite, self).__init__(configuration_json)

self._dbpath = self.configuration['dbpath']

def get_schema(self):
query_table = "select tbl_name from sqlite_master where type='table'"
query_columns = "PRAGMA table_info(%s)"

results, error = self.run_query(query_table)

if error is not None:
raise Exception("Failed getting schema.")

results = json.loads(results)

schema = {}
for row in results['rows']:
table_name = row['tbl_name']
schema[table_name] = {'name': table_name, 'columns': []}
results_table, error = self.run_query(query_columns % (table_name,))
if error is not None:
raise Exception("Failed getting schema.")

results_table = json.loads(results_table)
for row_column in results_table['rows']:
schema[table_name]['columns'].append(row_column['name'])

return schema.values()

def run_query(self, query):
connection = sqlite3.connect(self._dbpath)

cursor = connection.cursor()

try:
cursor.execute(query)

if cursor.description is not None:
columns = self.fetch_columns([(i[0], None) for i in cursor.description])
rows = [dict(zip((c['name'] for c in columns), row)) for row in cursor]

data = {'columns': columns, 'rows': rows}
error = None
json_data = json.dumps(data, cls=JSONEncoder)
else:
error = 'Query completed but it returned no data.'
json_data = None
except KeyboardInterrupt:
connection.cancel()
error = "Query cancelled by user."
json_data = None
except Exception as e:
raise sys.exc_info()[1], None, sys.exc_info()[2]
finally:
connection.close()
return json_data, error

register(Sqlite)






1 change: 1 addition & 0 deletions redash/settings.py
Expand Up @@ -129,6 +129,7 @@ def all_settings():
'redash.query_runner.vertica',
'redash.query_runner.treasuredata',
'redash.query_runner.oracle',
'redash.query_runner.sqlite',
]

enabled_query_runners = array_from_string(os.environ.get("REDASH_ENABLED_QUERY_RUNNERS", ",".join(default_query_runners)))
Expand Down

0 comments on commit aa04a6e

Please sign in to comment.