ipython-sql icon indicating copy to clipboard operation
ipython-sql copied to clipboard

%%sql magic for IPython, hopefully evolving into full SQL client

Results 104 ipython-sql issues
Sort by recently updated
recently updated
newest added

I installed the new version of ipython-sql with ``` git clone https://github.com/catherinedevlin/ipython-sql.git pip install ipython-sql ``` This is the code I made a simple select in a string and run...

I can connect hive/presto using `create_engine` like this ``` from sqlalchemy.engine import create_engine conn = create_engine( 'presto://user@host:port', connect_args={'protocol': 'https', 'requests_kwargs': { 'auth': HTTPBasicAuth('user', 'pw'), 'verify': '/cert.pem', }} ) df =...

If I understand the documentation correctly in order for me to store the query output to the variable "works" I can use "

![image](https://user-images.githubusercontent.com/50823387/70865420-e0134400-1f5d-11ea-84cc-cf0fbc216050.png) The error message is as above. There is @ symbbol at password, so I have tried two cases: with @ or replace @ with %40, neither works. Could you...

Intellisense seems not to work in VSCode, at least for resultSet.DataFrame() and the returned NDFrame object when used in jupyter notebooks.

I am in the situation where I want to possibly make my notebooks publicly available, but I am concerned with the visibility of the connection string. Currently the following happens...

Error: Connection info needed in SQLAlchemy format, example: postgresql://username:password@hostname/dbname or an existing connection: dict_keys([]) invalid literal for int() with base 10: '' Connection info needed in SQLAlchemy format, example: postgresql://username:password@hostname/dbname...

When displaying a pandas dataframe returned from a SQL query, the dataframe is displayed along with its index column. It would be useful to display just the table as returned...

I have the following error when I execute this sql query: ``` %load_ext sql %config SqlMagic.autopandas = True %sql xxxx import IPython import pandas as pd import numpy as np...