I have a little problem with the creation of a table (for a database) in Java.
Currently, I\'m using IntelliJ IDEA and when I write the code for creating a table the tex
This warning indicates that you have not configured data source in Database Tool Window in Intellij Idea. It doesn't mean that your code is wrong, it just shows that you don't have code completion based on your database schema.
Configuration of datasource in Intellij is described here https://www.jetbrains.com/help/idea/database-tool-window.html
I think you should check the connection to your database.
url - a database url of the form jdbc:subprotocol:subname
Check the Api https://docs.oracle.com/javase/7/docs/api/java/sql/DriverManager.html#getConnection(java.lang.String)
Did you add the ODBC correct?
The message:
No data sources are configured to run this SQL and provide advanced code assistance.`
is a little explicit and IMHO a little unnecessary, because I really think that I don't need to configure a database for every project in which we have some SQL queries.
To handle this message, you have two options:
or
You may need to disable as well No data sources configured inspection on:
Inspections -> SQL -> No data sources configured
The second option is the best approach for me unless you really want or need a Data Source in your project.