tutorials
tutorials copied to clipboard
Add example of querying a database via pyodbc
Hey there, I saw this mentioned in beginner/extensions and extensions/creator. I'll try figure this out and put together a brief example that could be slotted into either section
Is it recommended to load from pyodbc to a file?
You would use pyodbc to query and load in memory, not a file if that is what you are asking.
It is yep! So for now larger than memory data won't be loadable this way? I'm trying to visualise DB -> Fugue -> BI tool
Definitely not. You would need to pre-aggregate in some way or query and persist part by part I think. Or you would use the database service itself to output that file.
great, thanks Kevin