DatabaseUtils.props.sqlite3 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172
  1. # Database settings for sqlite 3.x
  2. #
  3. # General information on database access can be found here:
  4. # https://waikato.github.io/weka-wiki/databases/
  5. #
  6. # url: http://www.sqlite.org/
  7. # jdbc: http://www.zentus.com/sqlitejdbc/
  8. # author: Fracpete (fracpete at waikato dot ac dot nz)
  9. # version: $Revision: 15255 $
  10. # JDBC driver (comma-separated list)
  11. jdbcDriver=org.sqlite.JDBC
  12. # database URL
  13. jdbcURL=jdbc:sqlite:/path/to/database.db
  14. # specific data types
  15. # string, getString() = 0; --> nominal
  16. # boolean, getBoolean() = 1; --> nominal
  17. # double, getDouble() = 2; --> numeric
  18. # byte, getByte() = 3; --> numeric
  19. # short, getByte()= 4; --> numeric
  20. # int, getInteger() = 5; --> numeric
  21. # long, getLong() = 6; --> numeric
  22. # float, getFloat() = 7; --> numeric
  23. # date, getDate() = 8; --> date
  24. # text, getString() = 9; --> string
  25. # time, getTime() = 10; --> date
  26. # timestamp, getTime() = 11; --> date
  27. # other options
  28. CREATE_DOUBLE=DOUBLE
  29. CREATE_STRING=TEXT
  30. CREATE_INT=INT
  31. CREATE_DATE=DATETIME
  32. DateFormat=yyyy-MM-dd HH:mm:ss
  33. checkUpperCaseNames=false
  34. checkLowerCaseNames=false
  35. checkForTable=true
  36. # All the reserved keywords for this database
  37. # Based on the keywords listed at the following URL (2009-04-13):
  38. # http://www.sqlite.org/lang_keywords.html
  39. Keywords=\
  40. ABORT,\
  41. ADD,\
  42. AFTER,\
  43. ALL,\
  44. ALTER,\
  45. ANALYZE,\
  46. AND,\
  47. AS,\
  48. ASC,\
  49. ATTACH,\
  50. AUTOINCREMENT,\
  51. BEFORE,\
  52. BEGIN,\
  53. BETWEEN,\
  54. BY,\
  55. CASCADE,\
  56. CASE,\
  57. CAST,\
  58. CHECK,\
  59. COLLATE,\
  60. COLUMN,\
  61. COMMIT,\
  62. CONFLICT,\
  63. CONSTRAINT,\
  64. CREATE,\
  65. CROSS,\
  66. CURRENT_DATE,\
  67. CURRENT_TIME,\
  68. CURRENT_TIMESTAMP,\
  69. DATABASE,\
  70. DEFAULT,\
  71. DEFERRABLE,\
  72. DEFERRED,\
  73. DELETE,\
  74. DESC,\
  75. DETACH,\
  76. DISTINCT,\
  77. DROP,\
  78. EACH,\
  79. ELSE,\
  80. END,\
  81. ESCAPE,\
  82. EXCEPT,\
  83. EXCLUSIVE,\
  84. EXISTS,\
  85. EXPLAIN,\
  86. FAIL,\
  87. FOR,\
  88. FOREIGN,\
  89. FROM,\
  90. FULL,\
  91. GLOB,\
  92. GROUP,\
  93. HAVING,\
  94. IF,\
  95. IGNORE,\
  96. IMMEDIATE,\
  97. IN,\
  98. INDEX,\
  99. INDEXED,\
  100. INITIALLY,\
  101. INNER,\
  102. INSERT,\
  103. INSTEAD,\
  104. INTERSECT,\
  105. INTO,\
  106. IS,\
  107. ISNULL,\
  108. JOIN,\
  109. KEY,\
  110. LEFT,\
  111. LIKE,\
  112. LIMIT,\
  113. MATCH,\
  114. NATURAL,\
  115. NOT,\
  116. NOTNULL,\
  117. NULL,\
  118. OF,\
  119. OFFSET,\
  120. ON,\
  121. OR,\
  122. ORDER,\
  123. OUTER,\
  124. PLAN,\
  125. PRAGMA,\
  126. PRIMARY,\
  127. QUERY,\
  128. RAISE,\
  129. REFERENCES,\
  130. REGEXP,\
  131. REINDEX,\
  132. RELEASE,\
  133. RENAME,\
  134. REPLACE,\
  135. RESTRICT,\
  136. RIGHT,\
  137. ROLLBACK,\
  138. ROW,\
  139. SAVEPOINT,\
  140. SELECT,\
  141. SET,\
  142. TABLE,\
  143. TEMP,\
  144. TEMPORARY,\
  145. THEN,\
  146. TO,\
  147. TRANSACTION,\
  148. TRIGGER,\
  149. UNION,\
  150. UNIQUE,\
  151. UPDATE,\
  152. USING,\
  153. VACUUM,\
  154. VALUES,\
  155. VIEW,\
  156. VIRTUAL,\
  157. WHEN,\
  158. WHERE
  159. # The character to append to attribute names to avoid exceptions due to
  160. # clashes between keywords and attribute names
  161. KeywordsMaskChar=_
  162. #flags for loading and saving instances using DatabaseLoader/Saver
  163. nominalToStringLimit=50
  164. idColumn=auto_generated_id