duckdb-web
duckdb-web copied to clipboard
DuckDB website and documentation
We should move to generating the API reference based on the typescript stubs, and include the jsdoc strings there as well (eventually, the NodeJS bindings will be written in typescript...
* [ ] The sections stating `Currently not available` should be removed. This will reveals some bugs in the selection mechanism, these should be fixed. * [ ] The page...
See the discussion at https://github.com/duckdb/duckdb/discussions/10193
The typecasting matrix in https://duckdb.org/docs/sql/data_types/typecasting has a couple of issues: - contains wrong information. For example, according to the chart, VARCHAR cannot be cast to any target type, contradicting the...
See https://github.com/duckdb/duckdb/issues/10154
See https://github.com/duckdb/duckdb/issues/10051
See https://github.com/duckdb/duckdb/issues/10586
https://duckdb.org/docs/archive/0.9.1/api/wasm/instantiation Add example to explain the following options from DuckDBQueryConfig: * castBigIntToDouble * castDecimalToDouble * castDurationToTime64 * castTimestampToDate * queryPollingInterval ``` await this._db.instantiate(bundle.mainModule, bundle.pthreadWorker) await this._db.open({ path: ':memory:', query: {...
- [ ] Document CORS errors / how to host resources for having them work in duckdb-wasm. Expand on this answer: https://github.com/duckdb/duckdb-wasm/issues/1578#issuecomment-1892151825 Relevant links to be considered for inclusion from...