~ubuntu-branches/ubuntu/raring/weka/raring

« back to all changes in this revision

Viewing changes to weka/experiment/DatabaseUtils.props.sqlite3

  • Committer: Bazaar Package Importer
  • Author(s): Torsten Werner, Soeren Sonnenburg, Torsten Werner
  • Date: 2008-08-10 21:27:05 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20080810212705-tr8etpnkdx2ziktp
Tags: 3.5.8-1
[ Soeren Sonnenburg ]
* Bump Standards Version to 3.8.0.
* Remove references to non-free Java in debian/copyright.

[ Torsten Werner ]
* new upstream release
* Switch to openjdk-6.
* Move package to main.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Database settings for sqlite 3.x
 
2
#
 
3
# url:     http://www.sqlite.org/
 
4
# jdbc:    http://www.zentus.com/sqlitejdbc/
 
5
# author:  Fracpete (fracpete at waikato dot ac dot nz)
 
6
# version: $Revision: 1.2 $
 
7
 
 
8
# JDBC driver (comma-separated list)
 
9
jdbcDriver=org.sqlite.JDBC
 
10
 
 
11
# database URL
 
12
jdbcURL=jdbc:sqlite:/path/to/database.db
 
13
 
 
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
# gloat, getFloat() = 7;      --> numeric
 
23
# date, getDate() = 8;        --> date
 
24
# text, getString() = 9;      --> string
 
25
 
 
26
# other options
 
27
CREATE_DOUBLE=DOUBLE
 
28
CREATE_STRING=TEXT
 
29
CREATE_INT=INT
 
30
checkUpperCaseNames=false
 
31
checkLowerCaseNames=false
 
32
checkForTable=true
 
33