Posts: 969
Threads: 26
Joined: Jan 2016
Reputation:
0
Show us how the table created, and btw add a line bizid++ in for (new i)
Posts: 969
Threads: 26
Joined: Jan 2016
Reputation:
0
X, Y, Z, EX, EY and EZ should be floats
Posts: 11,827
Threads: 33
Joined: Dec 2011
Reputation:
0
DOUBLE and FLOAT are both floating-point types. The problem is that field IDs start from 0 instead of 1 so you most likely get errors (in mysql log) for wrong data types.
Posts: 11,827
Threads: 33
Joined: Dec 2011
Reputation:
0
You need to subtract the field id by 1 so:
1 becomes 0
10 becomes 9
and so on.