Ivan Oval
Ivan Oval

Reputation: 151

SQL code assist in IntelliJ IDEA

In IntelliJ IDEA 11.0.1 I connected Data Source to Oracle database. When I open an *.sql file and type

 SELECT * FROM 

I see in code completion list of available tables. Also table columns of selected table are available in WHERE part of statement But when I type

INSERT INTO 

No table is available in code completion. The same for SQL console.

Upvotes: 1

Views: 626

Answers (1)

CrazyCoder
CrazyCoder

Reputation: 401897

Looks like a known bug. It's already fixed in IDEA 12 EAP and will be also fixed in IDEA 11.1.4 (not released at the moment of writing this answer).

Upvotes: 1

Related Questions