I'd like to connect from IPython notebook to a SQL-Server database via integrated security.
Is this possible? I'm guessing yes it is.
How do I format the connection string in the following?
import pandas as pd
import pandas.io.sql as psql
sql = "SELECT * FROM WHdb.dbo.vw_smallTable"
cnx = "Provider=SQLOLEDB.1;Integrated Security=SSPI;Persist Security Info=True;Initial Catalog=WHdb;Data Source=OurServerName"
data = psql.read_sql(sql, cnx)
This just gives an error.
Am I going about the cnx
incorrectly?