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

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

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

Pull request for the issue 357

Connect throws MetaData.__init__() got an unexpected keyword argument 'bind' For now specifying SQLAlchemy version better, but should actually fix

I'm trying to query a table where the ID's are in a list of select id's. I've tried passing this bind variable as both a list and tuple but nothing...

Hello, I am trying to connect to IBM db2 from the notebook in IBM watson studio itself. I am connecting with the proper format: (%sql ibm_db_sa://my-username:my-password@my-hostname:my-port/my-db-name?security=SSL) %sql ibm_db_sa://jl*****9:ReG**********kk*z@ea286ace-****-4d5b-8**************************od8lcg.data bases.appdomain.cloud:3***5/bludb?security=SSL Still...

Connecting like ``` %sql mysql+pymysql://{user}:{password}@{host}/shared ``` now produces: ``` __init__() got an unexpected keyword argument 'bind' Connection info needed in SQLAlchemy format, example: postgresql://username:password@hostname/dbname or an existing connection: dict_keys([]) ```...

Using ipython-sql 0.3.9 installed via conda together with postgres and I'm not sure if the SqlMagic.autocommit=True option is working. This code ``` %load_ext sql ``` ``` %config SqlMagic.autocommit=True ``` ```...

Hi, At random times during my notebook session, a sql statement like `%sql select count(*) from table` will just hang even though the calculation should be fast. This hang cannot...

Hello--I've really enjoyed using ipython-sql! One challenge I have is that it requires creating a new engine, rather than using an existing one. I can work around this by having...

Hello, first off I absolutely love your work here. But is there any existing support for creating custom SQLite functions or could it be added? **Example:** ``` from sqlalchemy import...

Here is my code to connect to database: ``` import pandas as pd import psycopg2 import matplotlib.pyplot as plt import numpy as np %matplotlib inline import matplotlib as mpl import...