ipython-sql
ipython-sql copied to clipboard
%%sql magic for IPython, hopefully evolving into full SQL client
Hi. I am using ipython-sql as an easy-to-access SQL terminal, but in other cases I use the peewee ORM. This leads to having 2 open database connections and some temporal...
I have Jupyter notebook in which I am able to access using pytds. I would like to use it with sqlalchemy and the %%sql command. however when try the following:...
Example: In: ``` %%sql result
Can we persist a pandas data frame to the database without index? ```python import pandas as pd mytable = pd.DataFrame({'col0': [10,20,30], 'col1': ['a','b','c'] %sql --persist mytable ``` This includes the...
Steps to reproduce the issue. 1. Create dsn file 3. Run below commands %config SqlMagic.dsn_filename='./dsn.ini' %sql –section [DB_CONFIG_1] I get below error instead of connecting to db "Environment variable $DATABASE_URL...
Tried to run below code in jupyter notebook `%load_ext sql` `%config SqlMagic.displaylimit = 5` Got error message: "AttributeError: type object 'CommManager' has no attribute 'class_traits'" I did successfully run the...
Hello , I opened a Issue at sqlalchemy regarding a connection to oracle wiyh new driver oracle+oracledb, and they tell me that this issue was related to ipython-sql. The trhread...
First I run ``` %%sql create table Userpro ( email text primary key, username text unique not null, birthday timestamp not null, Home_Adress text not null, Phone_No text unique not...
Looking at the history of the `prettytable` version pin (see #136 and #144) and checking that [package's release history](https://pypi.org/project/prettytable/#history) on PyPI, I don't see a release with version `7`. Was...
The 0.4.0 git tag is missing.