weka mysql does not recognize int datatype code example
Example 1: weka mysql does not recognize int datatype
TINYINT=3
SMALLINT=4
SHORT=5
INTEGER=5
INT=5
INT_UNSIGNED=6
BIGINT=6
LONG=6
REAL=7
NUMERIC=2
DECIMAL=2
FLOAT=2
DOUBLE=2
CHAR=0
TEXT=0
VARCHAR=0
LONGVARCHAR=9
BINARY=0
VARBINARY=0
LONGVARBINARY=9
BIT=1
BLOB=8
DATE=8
TIME=8
DATETIME=8
TIMESTAMP=8
Example 2: weka mysql does not recognize int datatype
string, getString() = 0;
boolean, getBoolean() = 1;
double, getDouble() = 2;
byte, getByte() = 3;
short, getByte()= 4;
int, getInteger() = 5;
long, getLong() = 6;
float, getFloat() = 7;
date, getDate() = 8;
text, getString() = 9;
time, getTime() = 10;
BigDecimal,getBigDecimal()=11;