You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm on 0.8.1, using the bundled db. I can create tables and query rows, but all of the column methods fail.
Starting with the basic example, everything works, but if I stick the following at the end:
let mut stmt = conn.prepare("SELECT id, name, data FROM person")?;
let col_count = stmt.column_count();
println!("COL COUNT: {}", col_count);
I get an error with the following backtrace:
thread 'main' panicked at 'called `Option::unwrap()` on a `None` value', /home/user/.cargo/registry/src/index.crates.io-6f17d22bba15001f/duckdb-0.8.1/src/raw_statement.rs:70:21
I get the same for the other column_* methods.
The text was updated successfully, but these errors were encountered:
I'm on 0.8.1, using the bundled db. I can create tables and query rows, but all of the column methods fail.
Starting with the basic example, everything works, but if I stick the following at the end:
I get an error with the following backtrace:
I get the same for the other column_* methods.
The text was updated successfully, but these errors were encountered: