Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to connect Orange SQL Table widget to Remote SQL Server

Tags:

orange

I just installed Orange 3.3.9 on my Windows 7 workstation. I'm trying to connect to a remote MSSQL server instance using the "SQL Table" widget in Orange.

When I double click the SQL Table widget I get what appears to be a dialog box to configure the connection (Server, Database[/Schema], Username, Password) but all of the fields are disabled and the message "Please install a backend to use this widget" appears at the top of the dialog.
enter image description here

I tried adding an ODBC connection for the remote SQL server and restarting Orange but that didn't help.

Any idea how to make this work?

Thanks!

like image 633
user1038638 Avatar asked Jan 06 '17 23:01

user1038638


1 Answers

You must install pymssql and restart the framework.

pip install pymssql

https://docs.orange.biolab.si/3/visual-programming/widgets/data/sqltable.html

like image 171
GBrian Avatar answered Oct 20 '22 20:10

GBrian