-
Notifications
You must be signed in to change notification settings - Fork 355
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
merge install and load into a single page
- Loading branch information
Showing
6 changed files
with
66 additions
and
72 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
--- | ||
layout: docu | ||
title: LOAD/INSTALL Statements | ||
railroad: statements/load_and_install.js | ||
--- | ||
|
||
# INSTALL | ||
|
||
The `INSTALL` statement downloads an extension so it can be loaded into a duckdb session. | ||
|
||
## Examples | ||
|
||
Install the [`httpfs`]({% link docs/extensions/httpfs/overview.md %}) extension: | ||
|
||
```sql | ||
INSTALL httpfs; | ||
``` | ||
|
||
Install the h3 [community extension]({% link docs/extensions/community_extensions.md %}): | ||
|
||
```sql | ||
INSTALL h3 from community; | ||
``` | ||
|
||
## Syntax | ||
|
||
<div id="rrdiagram2"></div> | ||
|
||
# LOAD | ||
|
||
The `LOAD` statement loads an installed duckdb extension into the current session. | ||
|
||
## Examples | ||
|
||
Load the [`httpfs`]({% link docs/extensions/httpfs/overview.md %}) extension: | ||
|
||
```sql | ||
LOAD httpfs; | ||
``` | ||
|
||
Load the [`spatial`]({% link docs/extensions/spatial.md %}) extension: | ||
|
||
```sql | ||
LOAD spatial; | ||
``` | ||
|
||
## Syntax | ||
|
||
<div id="rrdiagram1"></div> |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters