weka mysql does not recognize int datatype

Solutions on MaxInterview for weka mysql does not recognize int datatype by the best coders in the world

showing results for - "weka mysql does not recognize int datatype"
Pietro
06 May 2018
1# Specific data types, the specific data types are modified as follows, mainly to remove comments
2
3string, getString() = 0;    --> nominal
4
5boolean, getBoolean() = 1--> nominal
6
7double, getDouble() = 2;    --> numeric
8
9byte, getByte() = 3;        --> numeric
10
11short, getByte()= 4;        --> numeric
12
13int, getInteger() = 5;      --> numeric
14
15long, getLong() = 6;        --> numeric
16
17float, getFloat() = 7;      --> numeric
18
19date, getDate() = 8;        --> date
20
21text, getString() = 9;      --> string
22
23time, getTime() = 10;       --> date
24
25BigDecimal,getBigDecimal()=11;   -->nominal 
26
Julien
03 Jul 2017
1#See if the following are added, especially the int type
2TINYINT=3
3
4SMALLINT=4
5
6SHORT=5
7
8INTEGER=5
9
10INT=5
11
12INT_UNSIGNED=6
13
14BIGINT=6
15
16LONG=6
17
18REAL=7
19
20NUMERIC=2
21
22DECIMAL=2
23
24FLOAT=2
25
26DOUBLE=2
27
28CHAR=0
29
30TEXT=0
31
32VARCHAR=0
33
34LONGVARCHAR=9
35
36BINARY=0
37
38VARBINARY=0
39
40LONGVARBINARY=9
41
42BIT=1
43
44BLOB=8
45
46DATE=8
47
48TIME=8
49
50DATETIME=8
51
52TIMESTAMP=8
53