Some questions about SQL plugin for iBATIS plugin
Today I upgraded iBATIS plugin to make it compatible for IDEA 8.0 , and I found IntelliLang injects the SQL language to sqlmap file, and it is useful. :) and it makes iBATIS plugin more powerful, For more features, I got following questions:
1 How to implement table field navigation to datasource tool window? attachment 1
2 How to implement code completion for iBATIS parameters in SQL sentence? attachment 2
3 How to implement SQL code completion with inline style? attachment 3
4 Can I access SQL PSI structure, and I want to get SQL structure information for some inspections? and how to do?
The above problem are very important for me, and these features can make the plugin to 1.0 :)
Attachment(s):
parameter_completion.PNG
inline.PNG
click_to_navigate.PNG
请先登录再写评论。
Add reference that resolves to some DB PSI element.
DB PSI is available via:
DbPsiFacade.getInstance(project).getDataSources(..) etc.
linux_china wrote: