iBATIS commits

RevisionAuthorDateDescription
664605rgrabowski08 Jun 2008 22:27:04

Changed private members to protected to allow more access to internal members in the rare case that DataMapper gets extended.

664536gbayon08 Jun 2008 14:20:44

IBATISNET-271 add event support

664296gbayon07 Jun 2008 04:14:33

Allow cache model, reflection optimizer, namespace statement setting via code (Xml setting will override code configuration), see class ConfigurationSetting + cosmetic change

663760jgbutler05 Jun 2008 18:05:48

ibator: minor refactoring

663728gbayon05 Jun 2008 16:40:05

fix IBATISNET-270

663718jgbutler05 Jun 2008 15:48:52

ibator: many changes to improve extensibility and enable future refactorings

663717jgbutler05 Jun 2008 15:40:22

ibator: many changes to improve extensibility and enable future refactorings

663710gbayon05 Jun 2008 15:29:34

IBATISNET-269 Allow to change de Dynamuc SQL ibatis engine via Configuration, see the property DynamicSqlEngine on ConfigurationSetting

663367gbayon04 Jun 2008 16:19:01

Improve support for dynamic sql via velocity, see IBATISNET-269

662868gbayon03 Jun 2008 15:58:51

implement IBATISNET-269

662500gbayon02 Jun 2008 13:59:24

Remove API for QueryForList with skipResults and maxResults

662267gbayon01 Jun 2008 14:53:44

Show use of a JsonInterpreter which support configuration file in JSON format
such as
{
"sqlMapConfig": {
"properties": {"@uri": "file://../../database.config"},

"settings": {
"setting": {"@useStatementNamespaces": "${useStatementNamespaces}"},
"setting": {"@cacheModelsEnabled": "true"},
"setting": {"@validateSqlMap": "false"},
"setting": {"@useReflectionOptimizer": "true"}
},

"providers": {"@uri": "file://providers.config"},

"database":{
"provider": {"@name": "sqlServer2.0"},
"dataSource": {"@name": "iBatisNet","@connectionString": "data source=${datasource};database=${database};Integrated Security=SSPI;"}
},

"typeHandlers":{
"typeHandler": {"@type": "string","@callback": "AnsiStringTypeHandler"}
},

"sqlMaps":{
"sqlMap": {"@uri": "file://../../${directory}/DocumentModule.xml"},
"sqlMap": {"@uri": "file://../../${directory}/AccountModule.xml"}
}
}
}

662264gbayon01 Jun 2008 14:50:35

Add StaticContentResource which adapts a static string content as an IResource