Pere Drinovac

Results 3 comments of Pere Drinovac

In Python the following code works: ``` import duckdb from io import StringIO string = StringIO("c1,c2,c3\na,b,c") duckdb.read_csv(string, header=True) ``` Gemini 2.5 provides the following information: > DuckDB's read_csv function is...

Essentially, `read_csv_auto` is a convenient shorthand for `read_csv` with the AUTO_DETECT option enabled. If my understanding is correct, then the `ruby-duckdb` gem primarily acts as a wrapper around the DuckDB...

Thanks for considering this issue. Perhaps someone else can confirm the error. Using AI gives the following answer: When a gem like duckdb uses native extensions , it means part...