Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Copy column names from tree #47

Closed
jungle-boogie opened this issue Jun 2, 2021 · 2 comments
Closed

Copy column names from tree #47

jungle-boogie opened this issue Jun 2, 2021 · 2 comments

Comments

@jungle-boogie
Copy link

Hi,

Sometimes I don't want to type the column names that I'm interested in querying from. It would be nice if I could copy the column name with ctrl+c and paste it into the editor window.

This is mostly working, but it will also copy over the datatype, so that has to be deleted as well.

For example, EventCode: TEXT It would be nice if it would just copy EventCode, then I copy paste that into the editor/terminal.

alternatively, is it possible for auto complete to look at column names?

Thanks!

@little-brother
Copy link
Owner

Yeah, it's a bug.

To avoid type a column name you can use alias e.g. b:

select * from books b
-->
select b.id, b.<autocomplete should appear here>  from books b

little-brother added a commit that referenced this issue Jun 7, 2021
+ Drag-n-drop tree items to an editor (with Ctrl to generate statement)
* Static colors for columns in Chart
* Fix issues: #47, #48
* Minor changes
* Fix minor bugs
@little-brother
Copy link
Owner

Fixed.

Starting from this release you can drag-n-drop tree items to an editor as in SQLiteStudio and DB4S.
Also dragging with Ctrl you can generate DML-statement.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants