mirror of
https://github.com/dbeaver/cloudbeaver.git
synced 2026-03-04 08:52:27 -05:00
Access an existing database connection directly via a link that opens the full-screen SQL editor #1022
Labels
No labels
AS
can't reproduce
can't reproduce
deployment
development
documentation
duplicate
duplicate
ee
enhancement
external
new driver
performance
third party issue
wait for response
wait for review
wontfix
x:Oracle
x:cassandra
x:clickhouse
x:db2
x:duckdb
x:greenplum
x:h2
x:h2gis
x:hana
x:hive
x:intersystems
x:kyuubi
x:maria
x:mongo
x:mysql
x:postgresql
x:presto
x:sql server
x:sqlite
x:teradata
x:trino
xf:accessibility
xf:administration
xf:authentication
xf:aws
xf:commit-mode
xf:connection
xf:data editor
xf:datatransfer
xf:dba
xf:driver management
xf:erd
xf:filters
xf:i18n
xf:i18n
xf:installer
xf:json
xf:ldap
xf:local config
xf:log viewer
xf:metadata
xf:metadata editor
xf:navigator
xf:okta
xf:query manager
xf:resource manager
xf:scripts
xf:sql editor
xf:tasks
xf:ui/uix
xo: Firefox
xo:eclipse
xo:internet explorer
xo:macos
xp:major
xrn:internal
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/cloudbeaver#1022
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @mnismael on GitHub (Oct 30, 2025).
Originally assigned to: @Wroud on GitHub.
Dear CloudBeaver Team,
I’m currently integrating CloudBeaver into an Angular application, using it primarily as a direct SQL editor. The goal is to provide users with a seamless experience where they can interact with the SQL editor without needing to manage connections or navigate through the default interface.
Current Use Case:
Feature Request:
I would like to enable a smoother integration by establishing a session and redirecting users directly to the full-screen SQL editor (/#/sql-editor) via a single endpoint—similar to the behavior triggered by the “Open in Tab” action. Ideally, this endpoint would:
The endpoint would behave similarly to the existing /open one already offered. But instead of redirecting to the root URI, it would get the sessionId and redirectly automatically to the full screen editor
This would significantly improve the user experience and streamline the integration. I’m open to contributing development effort to implement this feature if it’s feasible within the current architecture.
Please let me know if this is something that can be considered or if there are any technical constraints I should be aware of.
Best regards,
Mohamad
@Wroud commented on GitHub (Nov 10, 2025):
Hello, unfortunately, we don't plan to improve this behaviour in the near future. A workaround might be to connect to the database first via GraphQL (
initConnection) and then create a SQL context (sqlContextCreate). After that, you can usecontextIdto open the SQL Editor window:http://localhost/#/sql-editor/{contextId}