I would like to import some MySQL data into an Orange ExampleTable and I really can't understand how to do it directly without converting the database format. I would like to connect to the server and read the data from it into an ExampleTable. Is it possible?
I've browsed through all the orange documentation and still did not find an example of how this can be done.
Using the orngMySQL and the orngSQL python interfaces seem very close to what you want to achieve. Better than simply connecting to the whole database you can select only rows of interest, e.g.:
Producing something like this:
This is as close as a direct interface as one can get IMHO.