摘要:
下载MySQL5.7 https://dev.mysql.com/downloads/mysql/ 一般情况下载server,client,common,libs即可。 In most cases, you need to install the mysql-community-server, my 阅读全文
摘要:
mysql 批量insert语句为 insert into Table_(col1,col2...) values(val11,val12...),(val11,val12...),...; java代码示例 jdbc连接串中设置rewriteBatchedStatements=true, int 阅读全文
摘要:
public class PropertiesUtil { public static String get(String filePath, String key) { String val = null; Properties prop = new Properties(); InputStream in = null; ... 阅读全文