We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Just looking at the documentation here: https://duckdb.org/docs/api/c/types I noticed the following
Note that duckdb_value_varchar and duckdb_value_blob require the result to be de-allocated using duckdb_free.
Is this something we have to worry about in .net? I see for instance the following line of code in the data reader
public override string GetString(int ordinal) { return PlatformIndependentBindings.NativeMethods.DuckDBValueVarchar(_queryResult, ordinal, _currentRow); }
The text was updated successfully, but these errors were encountered:
Possibly related: https://stackoverflow.com/questions/370079/pinvoke-for-c-function-that-returns-char
Sorry, something went wrong.
Fixed by f2be8cb
No branches or pull requests
Just looking at the documentation here: https://duckdb.org/docs/api/c/types
I noticed the following
Is this something we have to worry about in .net? I see for instance the following line of code in the data reader
The text was updated successfully, but these errors were encountered: