Steve Simmons
Steve Simmons
Would `nextset()` be straightforward to implement in Turbodbc for MS SQL Server? The equivalent code in `pyodbc` is at L1760 of [cursor.cpp](https://github.com/mkleehammer/pyodbc/blob/969ea2c42712036d473fab5d4db715452580c6d3/src/cursor.cpp#L1760), and essentially just calls SQL Server's [SQLMoreResults()](https://docs.microsoft.com/en-us/sql/odbc/reference/syntax/sqlmoreresults-function?view=sql-server-ver15) function.
It looks like the back-end C++ machinery is already done. We only need to expose the C++ function call to Python. More specifically: * `statement.cpp` already has `more_results()` calling `raii_statement::do_more_results()`....
I had a go at solving this here: https://github.com/prashnts/pybloomfiltermmap3/pull/44
I am on 4.0.1 and the display jumps down several cells after executing a cell. So the newly active cell is way off the screen and I have to scroll...
Hi Michal @krassowski. My guess is there are two distinct issues: (a) several different scrolling behaviours when cells' code and/or output blocks are longer than the viewport height; (b) unexpected...
Hi guys. Thanks for the suggestions. I'll at those references and adjust as soon as work allows. Feel free to nudge me if you want it to happen quicker!
Actually after experiments with more PSMs in Tesseract, I'm now less sure PSM makes a difference. I half suspect there's something between Tesseract and `get_textpage_ocr` that drops output. I eliminated...
Stepping back from the detail, I'm surprised (in a way that I rarely am with PyMuPDF!) that get_textpage_ocr is missing big chunks of clear text from my PDF... I'll raise...