我有一个postgres数据库作为应用程序的一部分,当前文本字段填充了大约300K的文本.
表中大约有3列可以常规填充这些信息.这导致表格超过一个大约100行的演出.我想删除那些列中的数据而不删除行中的其他信息 - 我的问题是,如果我做更新集columns =''比插入select更好,我只是选择了我需要的行,然后删除现有的行.它是第三方应用程序,因此此时无法重写它们存储数据的方式.
我有两个不同的开源项目副本,一个是构建的,另一个是不构建的.没有建立的是:
Description Resource Path Location Type
The project was not built since its build path is incomplete. Cannot find the class file for javax.crypto.SecretKey. Fix the build path then try building this project Server Unknown Java Problem
The type javax.crypto.SecretKey cannot be resolved. It is indirectly referenced from required .class files DefaultConfigurationController.java /Server/src/com/mirth/connect/server/controllers line 1 Java Problem
Run Code Online (Sandbox Code Playgroud)
这两个类已经被eclipse强调了
import javax.crypto.KeyGenerator;
import javax.crypto.SecretKey;
Run Code Online (Sandbox Code Playgroud)
在构建的项目中,如何确定从哪里解析这些引用?