0
我必須在使用Ebean的MySQL數據庫中運行查詢(SELECT/INSERT)。 有我在爪哇發現兩個選項 - 遊戲框架在Play框架中使用Ebean映射
1. Connection conn=DB.getConnection();
Statement st=conn.createStatement();
ResultSet rs=st.executeQuery("select * from table1");
使用Ebean
2.Connection conn=DB.getConnection();
SqlUpdate down=Ebean.createSqlUpdate("insert into table1 (codefile,ADT,AD,TAG) VALUES (7555,'Ebean',0,0)");
down.execute();
但我想在MySQL數據庫地圖(插入完整陣列),而不是使用上面的查詢。
非常感謝@biesior知道您會救我.. :) – Incpetor