誰かがこれで私を助けてくれることを願っています!
私は次のようなSQLファイルを持っています:
CREATE TABLE IF NOT EXISTS users(
id INT UNSIGNED NOT NULL AUTO_INCREMENT,
firstname VARCHAR(30) NOT NULL,
lastname VARCHAR(30) NOT NULL,
PRIMARY KEY (id),
CONSTRAINT UNIQUE (firstname,lastname)
)
ENGINE=InnoDB
;
INSERT IGNORE INTO users (firstname,lastname) VALUES ('x','y');
/*
INSERT IGNORE INTO users (firstname,lastname) VALUES ('a','b');
*/
この関数を使用して、起動時にmysqlデータベースを初期化するWebアプリケーションを作成しました。
public static void initDatabase(ConnectionPool pool, File sqlFile){
Connection con = null;
Statement st = null;
String mySb=null;
try{
con = pool.getConnection();
mySb=IOUtils.copyToString(sqlFile);
// We use ";" as a delimiter for each request then we are sure to have well formed statements
String[] inst = mySb.split(";");
st = con.createStatement();
for(int i = 0; i<inst.length; i++){
// we ensure that there is no spaces before or after the request string
// in order not to execute empty statements
if(!inst[i].trim().isEmpty()){
st.executeUpdate(inst[i]);
}
}
st.close();
}catch(IOException e){
throw new RuntimeException(e);
}catch(SQLException e){
throw new RuntimeException(e);
}finally{
SQLUtils.safeClose(st);
pool.close(con);
}
}
(この関数はウェブ上で見つかりました。作者、あなたの名前を引用しないことを許してください、私はそれを失いました!!)
SQLコメントブロックがない限り、完全に機能します。
関数はcopyToString()
基本的にそれが言うことをします。私が今欲しいのは、文字列からブロックコメントを削除する正規表現を作成することです。/* */
ファイルにはブロックコメントしかありません--
。
私がこれまでに試したこと:
mySb = mySb.replaceAll("/\\*.*\\*/", "");
残念ながら、私は正規表現があまり得意ではありません...
「一致した文字列は次のようになります/* comment */ real statement /* another comment*/
」などの問題が発生します。