Jared Lorince

Results 7 issues of Jared Lorince

#### What happens? Using the python bindings, we will occasionally get a "resource temporarily unavailable" error when running: `con = duckdb.connect(database=":memory:", read_only=False)` I've searched the GitHub repo for this error...

Silver Foundation Member

Hello! We have custom dataframe display code we're using in a python notebook, and we're working on porting the functionality to R using IRkernel, but having some difficulties. In python,...

Changes in 5d347d14d4e9b81823865b19408067926caa205a breaks Windows support, as Windows doesn't support `os.fork`. Wish I could propose a fix, but I'm not sure if/how to achieve the same sort of functionality in...

TL;DR: Any non-select queries (inserts, create table etc. 1. What version of Python are you using? Python 3.9.12 2. What operating system and processor architecture are you using? Linux-5.4.181-99.354.amzn2.x86_64-x86_64-with-glibc2.28 3....

bug
needs triage

#### Bug Report Checklist - [X] Have you provided a full/minimal spec to reproduce the issue? - [X] Have you validated the input using an OpenAPI validator ([example](https://apidevtools.org/swagger-parser/online/))? - [...

Issue: Bug

Our application has logic to fetch all columns for a specific table, like so: ``` try (Connection conn = getConnection()) { DatabaseMetaData metadata = conn.getMetaData(); ResultSet tableResult = metadata.getTables( schemaName,...

Per the [java docs](https://docs.oracle.com/javase/7/docs/api/java/sql/Statement.html#getMoreResults()), `getMoreResults` should have the following behavior: ``` There are no more results when the following is true: // stmt is a Statement object ((stmt.getMoreResults() == false)...