trying to connect to SQL server with sqlalchemy
up vote
0
down vote
favorite
I can connect to SQL server with the following connection using pyodbc.
cnxn = pyodbc.connect("Driver=SQL Server Native Client 11.0;"
"Server=" + _SERVER + ";"
"Database=" + dbName + ";"
"uid=" + _USER + ";pwd=" + _PASSWORD)
However I can't connect using sqlalchemy
engine = sqlalchemy.create_engine('mssql+pyodbc://' + _USER + ':' + _PASSWORD + '@MyServer\SQL1/MyDatabaseNaem.db')
df.to_sql('myTable', con=engine, if_exists='append')
I get the following error,
InterfaceError: (pyodbc.InterfaceError) ('IM002', u'[IM002] [Microsoft][ODBC Driver Manager] Data source name not found and no default driver specified (0) (SQLDriverConnect)') (Background on this error at: http://sqlalche.me/e/rvf5)
What is wrong with my connection string?
python
add a comment |
up vote
0
down vote
favorite
I can connect to SQL server with the following connection using pyodbc.
cnxn = pyodbc.connect("Driver=SQL Server Native Client 11.0;"
"Server=" + _SERVER + ";"
"Database=" + dbName + ";"
"uid=" + _USER + ";pwd=" + _PASSWORD)
However I can't connect using sqlalchemy
engine = sqlalchemy.create_engine('mssql+pyodbc://' + _USER + ':' + _PASSWORD + '@MyServer\SQL1/MyDatabaseNaem.db')
df.to_sql('myTable', con=engine, if_exists='append')
I get the following error,
InterfaceError: (pyodbc.InterfaceError) ('IM002', u'[IM002] [Microsoft][ODBC Driver Manager] Data source name not found and no default driver specified (0) (SQLDriverConnect)') (Background on this error at: http://sqlalche.me/e/rvf5)
What is wrong with my connection string?
python
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I can connect to SQL server with the following connection using pyodbc.
cnxn = pyodbc.connect("Driver=SQL Server Native Client 11.0;"
"Server=" + _SERVER + ";"
"Database=" + dbName + ";"
"uid=" + _USER + ";pwd=" + _PASSWORD)
However I can't connect using sqlalchemy
engine = sqlalchemy.create_engine('mssql+pyodbc://' + _USER + ':' + _PASSWORD + '@MyServer\SQL1/MyDatabaseNaem.db')
df.to_sql('myTable', con=engine, if_exists='append')
I get the following error,
InterfaceError: (pyodbc.InterfaceError) ('IM002', u'[IM002] [Microsoft][ODBC Driver Manager] Data source name not found and no default driver specified (0) (SQLDriverConnect)') (Background on this error at: http://sqlalche.me/e/rvf5)
What is wrong with my connection string?
python
I can connect to SQL server with the following connection using pyodbc.
cnxn = pyodbc.connect("Driver=SQL Server Native Client 11.0;"
"Server=" + _SERVER + ";"
"Database=" + dbName + ";"
"uid=" + _USER + ";pwd=" + _PASSWORD)
However I can't connect using sqlalchemy
engine = sqlalchemy.create_engine('mssql+pyodbc://' + _USER + ':' + _PASSWORD + '@MyServer\SQL1/MyDatabaseNaem.db')
df.to_sql('myTable', con=engine, if_exists='append')
I get the following error,
InterfaceError: (pyodbc.InterfaceError) ('IM002', u'[IM002] [Microsoft][ODBC Driver Manager] Data source name not found and no default driver specified (0) (SQLDriverConnect)') (Background on this error at: http://sqlalche.me/e/rvf5)
What is wrong with my connection string?
python
python
asked 2 days ago
mHelpMe
1,929133775
1,929133775
add a comment |
add a comment |
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53237932%2ftrying-to-connect-to-sql-server-with-sqlalchemy%23new-answer', 'question_page');
);
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password