Browse Source

Documentation.

tags/v0.5.0^0
James Moger 13 years ago
parent
commit
0b2dcf3955
4 changed files with 4307 additions and 2 deletions
  1. 4302
    0
      api/v1.xml
  2. 1
    0
      docs/05_releases.mkd
  3. 2
    0
      docs/resources/.gitignore
  4. 2
    2
      src/com/iciql/Constants.java

+ 4302
- 0
api/v1.xml
File diff suppressed because it is too large
View File


+ 1
- 0
docs/05_releases.mkd View File

@@ -16,6 +16,7 @@
- added *Db.buildObjects(Class modelClass, ResultSet rs)* method to build objects from the ResultSet of a plain sql query
- added *ThreadLocal<T> com.iciql.Utils.newThreadLocal(final Class<? extends T> clazz)* method
- added optional console statement logger and SLF4J statement logger
- refactored dialect support
- throw *IciqlException* (which is a RuntimeException) instead of RuntimeException
- synchronized *Db.classMap* for concurrent sharing of a Db instance
- Database/table versioning uses the <b>_iq_versions </b> table, the <b>_ jq_versions</b> table, if present, is ignored

+ 2
- 0
docs/resources/.gitignore View File

@@ -0,0 +1,2 @@
/site_analytics.html
/site_ads.html

+ 2
- 2
src/com/iciql/Constants.java View File

@@ -25,11 +25,11 @@ public class Constants {
// The build script extracts this exact line so be careful editing it
// and only use A-Z a-z 0-9 .-_ in the string.
public static final String VERSION = "0.5.0-SNAPSHOT";
public static final String VERSION = "0.5.0";
// The build script extracts this exact line so be careful editing it
// and only use A-Z a-z 0-9 .-_ in the string.
public static final String VERSION_DATE = "PENDING";
public static final String VERSION_DATE = "2011-08-03";
// The build script extracts this exact line so be careful editing it
// and only use A-Z a-z 0-9 .-_ in the string.

Loading…
Cancel
Save