How can I query to determine what version of DuckDB is being created? #99
Answered
by
Giorgi
TurboCooler
asked this question in
Q&A
-
I create a database as follows: static void create_duckdb_database(string duckdbfile, string test_table_dml_file)
When I use QStdudio to try and read the contents of the tables, if fails and says I need a specific version of DuckDB. How can a query to determine the version of DuckDB file that was created? |
Beta Was this translation helpful? Give feedback.
Answered by
Giorgi
Apr 14, 2023
Replies: 1 comment
-
You can use |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
Giorgi
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You can use
connection.ServerVersion
to determine DuckDB version.