You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If a connection type isn't specified as the first positional argument, the query will be executed against
35
35
the default connection (stored in the exported variable `sqlitedb` if you'd like to
@@ -40,7 +40,7 @@ inspect).
40
40
41
41
For the general user, a simple `Sqlite.query(querystring)` is enough to return a single resultset in a DataFrame. Results are stored in the passed SqliteDB type's resultset field. (i.e. `sqlitedb.resultset`). Results are stored by default to avoid immediate garbarge collection and provide access for the user even if the resultset returned by query isn't stored in a variable.
`createtable` takes its `DataFrame` argument and converts it to an Sqlite table in the specified `SqliteDB`. By default, the resulting table will have the same name as the DataFrame variable, unless specifically passed with the `name` keyword argument.
46
46
@@ -62,6 +62,8 @@ inspect).
62
62
Stores information about an Sqlite database connection. Names include `file` for the Sqlite database filename, `handle` as the internal connection handle pointer, and `resultset` which
63
63
stores the last resultset returned from a `Sqlite.query` call.
64
64
65
+
*`typealias TableInput Union(DataFrame,String)`
66
+
65
67
#### Variables
66
68
*`sqlitedb`
67
69
Global, exported variable that initially holds a null `SqliteDB` type until a connection is successfully made by `Sqlite.connect`. Is used by `query` as the default datasource `SqliteDB` if none is explicitly specified.
0 commit comments