No data sources are configured to run this SQL

后端 未结 3 1527
甜味超标
甜味超标 2021-02-07 15:00

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

3条回答
  •  一生所求
    2021-02-07 15:41

    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:

    1. Configure a Data Source to your project, using the ALT + ENTER above the message and using the option Configure a Data Source:

    or

    1. Disable this SQL dialect detection inspection on the Inspection options on the IDE settings:

    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.

提交回复
热议问题