| ▲ | georgestagg 8 hours ago | ||||||||||||||||
ggsql has the concept of a "reader", which can be thought of as the way ggsql interfaces with a SQL database. It handles the connection to the database and generating the correct dialect of SQL for that database. As an alpha, we support just a few readers today: duckdb, sqlite, and an experimental ODBC reader. We have largely been focusing development mainly around driving duckdb with local files, though duckdb has extensions to talk to some other types of database. The idea is that ggsql takes your visualisation query, and then generates a selection of SQL queries to be executed on the database. It sends these queries using the reader, then builds the resulting visualisation with the returned data. That is how we can plot a histogram from very many rows of data, the statistics required to produce a histogram are converted into SQL queries, and only a few points are returned to us to draw bars of the correct height. By default ggsql will connect to an in-memory duckDB database. If you are using the CLI, you can use the `--reader` argument to connect to files on-disk or an ODBC URI. If you use Positron, you can do this a little easier through its dedicated "Connections" pane, and the ggsql Jupyter kernel has a magic SQL comment that can be issued to set up a particular reader. I plan to expand a little more on using ggsql with these external tools in the docs soon. | |||||||||||||||||
| ▲ | nojito 8 hours ago | parent | next [-] | ||||||||||||||||
Highly suggest leveraging adbc. I would love to use this against our bigquery tables. | |||||||||||||||||
| |||||||||||||||||
| ▲ | chatmasta 5 hours ago | parent | prev [-] | ||||||||||||||||
So we could use this with Postgres by putting DuckDB in front with its Postgres extension, pointing to the source data in PG? | |||||||||||||||||
| |||||||||||||||||