-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Integrate: Add dedicated page about DBeaver
- Loading branch information
Showing
4 changed files
with
88 additions
and
1 deletion.
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 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 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,85 @@ | ||
(dbeaver)= | ||
# DBeaver | ||
|
||
:::{include} /_include/links.md | ||
::: | ||
|
||
```{div} | ||
:style: "float: right; margin-left: 0.5em" | ||
[![](https://upload.wikimedia.org/wikipedia/commons/thumb/b/b5/DBeaver_logo.svg/512px-DBeaver_logo.svg.png){w=120px}](https://dbeaver.io/) | ||
``` | ||
|
||
[DBeaver] is a multipurpose cross-platform database tool for developers, | ||
database administrators, analysts, and everyone working with data. | ||
|
||
It is available as an open-source version _DBeaver Community_ and | ||
as a commercial version _DBeaver PRO_. | ||
|
||
|
||
## Connect | ||
|
||
::::{grid} 2 | ||
|
||
:::{grid-item} | ||
Please specify database URL and credentials of your CrateDB cluster. | ||
For connecting to CrateDB, the standard [PostgreSQL JDBC Driver] | ||
will be used. | ||
|
||
When connecting to [CrateDB Self-Managed] on localhost, | ||
for evaluation purposes, use: | ||
``` | ||
jdbc:postgresql://localhost:5432/crate | ||
``` | ||
|
||
When connecting to [CrateDB Cloud], use: | ||
``` | ||
jdbc:postgresql://<clustername>.cratedb.net:5432/crate | ||
``` | ||
::: | ||
:::{grid-item} | ||
![Image](https://github.com/user-attachments/assets/630fcc7c-21c5-4070-be72-e38041c19d8e){w=480px} | ||
::: | ||
|
||
:::: | ||
|
||
|
||
## Usage | ||
Use the tree menu on the left-hand pane to navigate to the `doc` schema and | ||
its tables. Navigate to the Data tab to browse your table data. | ||
|
||
![Image](https://cratedb.com/hs-fs/hubfs/Screen-Shot-2019-04-05-at-17.15.05.png?width=1600&name=Screen-Shot-2019-04-05-at-17.15.05.png){h=240px} | ||
![Image](https://cratedb.com/hs-fs/hubfs/Screen-Shot-2019-04-05-at-17.15.13.png?width=1600&name=Screen-Shot-2019-04-05-at-17.15.13.png){h=240px} | ||
|
||
|
||
## Learn | ||
|
||
:::{rubric} Tutorials | ||
::: | ||
- [Blog: Use CrateDB With DBeaver] | ||
|
||
:::{rubric} Product | ||
::: | ||
- [CrateDB and DBeaver] | ||
|
||
:::{rubric} Notes | ||
::: | ||
:::{note} | ||
A few data types of CrateDB need special considerations. | ||
- `ARRAY` types are recognised as such in reads, also work for inserts through the GUI. | ||
They need to use curly brackets syntax `{1,2}` instead of `[1,2]`. | ||
- `OBJECT` types are seen as string, and are ok to insert via GUI. | ||
- `GEO_POINT` types are seen as `STRING`, for insert through GUI, please use parentheses. | ||
- `GEO_SHAPE` types are seen as `STRING`, are ok to insert via GUI. | ||
- `FLOAT_VECTOR` types are seen as `ARRAY` on read, and can be inserted | ||
using the GUI with same considerations as `ARRAY`s. | ||
::: | ||
:::{note} | ||
We are tracking interoperability issues per [Tool: DBeaver], and appreciate | ||
any contributions and reports. | ||
::: | ||
|
||
|
||
[Blog: Use CrateDB With DBeaver]: https://cratedb.com/blog/cratedb-dbeaver | ||
[CrateDB and DBeaver]: https://cratedb.com/integrations/cratedb-and-dbeaver | ||
[DBeaver]: https://dbeaver.io/ | ||
[Tool: DBeaver]: https://github.com/crate/crate/labels/tool%3A%20DBeaver |
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 |
---|---|---|
|
@@ -9,4 +9,5 @@ database IDE (Integrated Development Environment) applications. | |
:maxdepth: 2 | ||
datagrip/index | ||
dbeaver/index | ||
``` |