Preql icon indicating copy to clipboard operation
Preql copied to clipboard

An interpreted relational query language that compiles to SQL.

Results 17 Preql issues
Sort by recently updated
recently updated
newest added

Hi, when a connection uri specify just the TNSNAMES.ORA entry name (e.g. oracle://:@), PREQL generates the root error: **cx_Oracle.DatabaseError: ORA-12154: TNS:could not resolve the connect identifier specified** The problem is...

trying to run `pipx run preql` or in venv pip install preql and running preql throws this same error. ``` Traceback (most recent call last): File "C:\Users\j\scoop\apps\python\current\lib\runpy.py", line 196, in...

...to better target an intended community.

To streamline local development, several developer tools were added to the pyproject.toml `dev-dependencies` section: pre-commit isort black pylint Pre-commit is not triggered by default and must be enabled with the...

Given this schema in a source table in BigQuery: attempting to persist a table as a subset of the source table throws an error: ```javascript connect("bigquery:///gcp-project-id-here") calendar = import_table("eCom_US.calendar") temp...

Running the following (or any other) script with `preql -m foo` command: ```javascript connect("bigquery:///gcp-project-id-here") cal = import_table("test_data.temp_cal") print(cal) ``` Results in the correct execution (judging by the output) but an...

Givent this schema in a source table: attempting to persist a table in BigQuery thows an error: ```javascript connect("bigquery:///gcp-project-name-here") calendar = import_table("eCom_US.calendar") temp = calendar{ Fin_Year, // INTEGER Fin_Year_Label //...

Came to this from the HN discusson 'against SQL'. In The translation of this... print Continent { ... // Include existing fields density: population / area // Create new a...

I get why this: ` join(c: Country.name, n:["Palau", "Nauru"].item) {...c} ` returns this: ![image](https://user-images.githubusercontent.com/596326/113526050-550cf180-9586-11eb-996f-873630a3bc3f.png) and even why this: ` join(c: Country.name, n:["Palau", "Nauru"].item) {...n} ` returns this: ![image](https://user-images.githubusercontent.com/596326/113526068-75d54700-9586-11eb-8fd1-8d7bff3d8fa6.png) but what...

question