use of com.qlangtech.tis.offline.pojo.TISDb in project tis by qlangtech.
the class TestGitUtils method testCreateDatabaseDaily.
public void testCreateDatabaseDaily() throws Exception {
TISDb db = new TISDb();
db.setPassword("123456");
db.setDbName("test");
db.setDbType("mysql");
db.setEncoding("utf8");
GIT_UTILS.createDatabase(db, "test");
}
Aggregations