The Wayback Machine - https://web.archive.org/web/20210902171409/https://github.com/topics/embedded-database
Skip to content
#

embedded-database

Here are 115 public repositories matching this topic...

duckdb
Ethanzjp
Ethanzjp commented Mar 21, 2021

Feature Request

Summary

Is your feature request related to a problem? Please describe:

In sqlite3,

sqlite> select sqlite_version();
3.31.1

I test the duckdb,

#include <duckdb.hpp>
int
main(int argc, char** argv){
    duckdb::DuckDB db(nullptr);
    duckdb::Connection con(db);
    auto result = con.Query("SELECT duck_version();");
    result->Print(

Improve this page

Add a description, image, and links to the embedded-database topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the embedded-database topic, visit your repo's landing page and select "manage topics."

Learn more