📄 daocountryjdbcmysql.java
字号:
package org.springframework.samples.countries.dao;
/**
* MySql Subclass for <code>CountryDaoJdbC</code>.
*
* @author Jean-Pierre Pawlak
*/
public class DaoCountryJdbcMySql extends DaoCountryJdbc {
// MySql specific examples
protected String DROP_SQL = "DROP TABLE IF EXISTS countries";
protected String CREATE_SQL = "CREATE TABLE countries (lang CHAR(2), code CHAR(2), name VARCHAR(50), PRIMARY KEY (lang,code) ) Type InnoDB";
// We don't include indexes due to the small size of this table.
/**
* @see org.springframework.samples.countries.dao.IDaoCountry#initBase()
*/
public void initBase() {
this.setDropSql(DROP_SQL);
this.setCreateSql(CREATE_SQL);
super.initBase();
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -