]> git.jsancho.org Git - datasette-pytables.git/commitdiff
Process some sqlite standard queries for obtaining tables info
authorJavier Sancho <jsf@jsancho.org>
Thu, 24 May 2018 10:24:52 +0000 (12:24 +0200)
committerJavier Sancho <jsf@jsancho.org>
Thu, 24 May 2018 10:24:52 +0000 (12:24 +0200)
datasette_pytables/__init__.py

index 74c72b1173fd7af371c414255c181c1c6bdaa3be..5d9fb22f78a88601900a08396b40541267f967c1 100644 (file)
@@ -79,6 +79,10 @@ class Connection:
         description = []
 
         parsed_sql = _parse_sql(sql, params)
+
+        if parsed_sql['from'] == 'sqlite_master':
+            return self._execute_datasette_query(sql, params)
+
         table = self.h5file.get_node(parsed_sql['from'])
         table_rows = []
         fields = parsed_sql['select']
@@ -211,6 +215,23 @@ class Connection:
         else:
             return rows
 
+    def _execute_datasette_query(self, sql, params):
+        "Datasette special queries for getting tables info"
+        if sql == "SELECT count(*) from sqlite_master WHERE type = 'view' and name=:n":
+            row = Row()
+            row['count(*)'] = 0
+            return [row]
+        elif sql == 'select sql from sqlite_master where name = :n and type="table"':
+            try:
+                table = self.h5file.get_node(params['n'])
+                row = Row()
+                row['sql'] = 'CREATE TABLE {} ()'.format(params['n'])
+                return [row]
+            except:
+                return []
+        else:
+            raise Exception("SQLite queries cannot be executed with this connector")
+
 class Row(OrderedDict):
     def __getitem__(self, label):
         if type(label) is int: