1. 程式人生 > >jfinal用SQLserver資料庫的方言配置

jfinal用SQLserver資料庫的方言配置

/**
	 * 配置外掛
	 */
	public void configPlugin(Plugins me) {
		// 配置C3p0資料庫連線池外掛
		C3p0Plugin c3p0Plugin = new C3p0Plugin(getProperty("jdbcUrl"), getProperty("user"), getProperty("password"),getProperty("driver"));
		me.add(c3p0Plugin);
		
		// 配置ActiveRecord外掛
		ActiveRecordPlugin arp = new ActiveRecordPlugin(c3p0Plugin);
                arp.setDialect(new AnsiSqlDialect());//設定資料庫方言
                 me.add(arp);
		arp.addMapping("blog", Blog.class);	// 對映blog 表到 Blog模型
	}

資料庫的配置檔案:一定要哦設定資料庫方言


driver=com.microsoft.sqlserver.jdbc.SQLServerDriver
jdbcUrl = jdbc:sqlserver://localhost:1433;DatabaseName=jfinal_demo
user = sa
password =wbs19950305
devMode = true