主页
IDEs Support (IntelliJ Platform) | JetBrains
联系支持服务
社区
登录
Anna Rodionova
活动总数
25
最后的活动
2024年08月25日 11:58
成员加入日期
2022年08月29日 14:26
关注
0 名用户
关注者数
0 名用户
投票数
0
订阅数
12
活动概览
文章(0)
帖子(0)
评论(13)
Anna Rodionova
进行了评论,
2024年08月25日 11:58
Hi!To execute the SQL, you need to:1. Create or get existing session by using com.intellij.database.console.session.DatabaseSessionManager#getSessions(com.intellij.openapi.project.Project, com.inte...
社区
IntelliJ IDEA Open API and Plugin Development
How to execute sql with database tool's sqleditor
0 票
Anna Rodionova
进行了评论,
2024年08月25日 11:53
Hi!To execute the SQL, you need to:1. Create or get existing session by using com.intellij.database.console.session.DatabaseSessionManager#getSessions(com.intellij.openapi.project.Project, com.inte...
社区
IntelliJ IDEA Open API and Plugin Development
How to execute the sql with the native database api
0 票
Anna Rodionova
进行了评论,
2024年02月20日 13:26
正式评论
Hi cpwm,You can independently retrieve your JDBC output on-the-fly during query execution and display it in the Output. To output, you need to use com.intellij.database.datagrid.DataRequest.Context...
社区
IntelliJ IDEA Open API and Plugin Development
How can I print JDBC driver logs to the Services panel's output?
0 票
Anna Rodionova
进行了评论,
2024年02月20日 12:03
正式评论
Hello Ewenson!You can process all relevant statements as follows: public static void handleConsoleQuery(@NotNull final Project project, @NotNull final PsiFile file, @NotNull final Editor editor) { ...
社区
IntelliJ IDEA Open API and Plugin Development
Datagrip editor get active text
0 票
Anna Rodionova
进行了评论,
2023年09月07日 13:11
Hi Guno Heitman!You can use the following method for your purpose: com.intellij.database.view.DbNavigationUtils#navigateToData(com.intellij.database.psi.DbElement, boolean).
社区
IntelliJ IDEA Open API and Plugin Development
Navigating to Database Grid from Line Marker Provider
0 票
Anna Rodionova
进行了评论,
2023年07月12日 10:37
Hello! It is true that instead of using getJdbcConnection(), you can use getRemoteConnection(). However, you can execute the query in a more convenient way using sessions. Session are our wrapper o...
社区
IntelliJ IDEA Open API and Plugin Development
Run sql statement programatically
1 票
Anna Rodionova
进行了评论,
2023年06月06日 13:11
Hi!First, I will tell you how you can achieve what you want, and then I will provide my recommendations on what I think you should do.How to achieve what you want:1. Connection I want to point out ...
社区
IntelliJ IDEA Open API and Plugin Development
Integrating with Database View for querying and Code Generation
0 票
Anna Rodionova
进行了评论,
2023年05月31日 09:11
Hi! Unfortunately, there is no way to do what you want - to add custom logic to the query and, based on it, change the parameters and the final text of the query.
社区
IntelliJ IDEA Open API and Plugin Development
How to change sql and parameters before execute?
1 票
Anna Rodionova
进行了评论,
2023年05月31日 09:00
正式评论
Hi! Unfortunately, there is currently no way to influence the logic of parameter substitution in the query text, so you will not be able to modify the query depending on the parameter values.
社区
IntelliJ IDEA Open API and Plugin Development
How can I get or modify dialog parameters and sql before real executing?
0 票
Anna Rodionova
进行了评论,
2023年04月19日 16:56
正式评论
Hi zion,To execute a query you need to:1. Create or get existing session (it's our wrapper for connection) by using com.intellij.database.console.session.DatabaseSessionManager#getSessions(com.inte...
社区
IntelliJ IDEA Open API and Plugin Development
When developing the idea plug-in, how to execute the query sql and get the query result?
0 票