0

我正在使用 IntelliJ 进行开发。我成功连接到 MSSQL Server,并且我的所有表等都加载了。我可以看到所有的表。我可以看到存储过程的名称和输入。

但是,当我尝试通过双击来编辑存储过程时,我收到以下消息:

-- Definition loading failed:
-- java.sql.SQLException: The database name component of the object qualifier must be the name of the current database.
--  at com.microsoft.sqlserver.jdbc.SQLServerException.makeFromDatabaseError(SQLServerException.java:216)
--  at com.microsoft.sqlserver.jdbc.SQLServerStatement.getNextResult(SQLServerStatement.java:1515)
--  at com.microsoft.sqlserver.jdbc.SQLServerStatement.doExecuteStatement(SQLServerStatement.java:792)
--  at com.microsoft.sqlserver.jdbc.SQLServerStatement$StmtExecCmd.doExecute(SQLServerStatement.java:689)
--  at com.microsoft.sqlserver.jdbc.TDSCommand.execute(IOBuffer.java:5696)
--  at com.microsoft.sqlserver.jdbc.SQLServerConnection.executeCommand(SQLServerConnection.java:1715)
--  at com.microsoft.sqlserver.jdbc.SQLServerStatement.executeCommand(SQLServerStatement.java:180)
--  at com.microsoft.sqlserver.jdbc.SQLServerStatement.executeStatement(SQLServerStatement.java:155)
--  at com.microsoft.sqlserver.jdbc.SQLServerStatement.executeQuery(SQLServerStatement.java:616)
--  in RemoteStatementImpl.executeQuery(RemoteStatementImpl.java:141)
--  at com.sun.proxy.$Proxy100.executeQuery(Unknown Source)
--  in DbImplUtil.concatStringResults(DbImplUtil.java:428)

我在一些博客上读到没有原生支持,有没有人找到解决方法?

4

1 回答 1

0

您应该能够在 Intellij IDEA 12 及更高版本中编辑存储过程:http: //youtrack.jetbrains.com/issue/IDEA-84426

这是相关的:我可以在 IntelliJ IDEA 中编辑 MS SQL 存储过程吗?

既然如此,也许这是您遇到的一个错误,值得在http://youtrack.jetbrains.com/上提出它?

更新

我刚刚在 Oracle 11.2.x 中创建了一个简单的存储过程,并在 Intellij IDEA 13 中对其进行了编辑,没有任何问题。

尝试在 MSSQL Server 中创建和编辑相同的内容?

CREATE OR REPLACE PROCEDURE procPrintHelloWorld
IS
BEGIN     
  --DBMS_OUTPUT.PUT_LINE('Hello World!');
  PRINT N'Hello World!';     
END;
/
于 2013-09-17T13:33:00.817 回答