I have arrays stacked in 1 array and I would like to insert each array per column in MySQL. I have reached to insert all data in arrays to 1 column, but I want to insert an array per column. Please see the screenshot and code below.
JavaScript
x
21
21
1
con.connect(async(err)=>{
2
const x = await getStock()
3
if(err){
4
console.log(err);
5
return err;
6
}else{
7
console.log("DB ok");
8
}
9
console.log("connected");
10
x.filter(item=>item===undefined?false:true).map(item=>item.forEach(item=>{
11
const sql ="INSERT INTO test (testCol1) VALUES ?";
12
const values=[
13
[item]
14
];
15
con.query(sql,[values],(err,result)=>{
16
if(err)throw err;
17
console.log("this have been recorded"+result);
18
});
19
}));
20
});
21
Advertisement
Answer
I just found a solution for this case. It can be a little bit confusing but it is working. Maybe there exists way easier and understandable solution, but this is the solution I have at the moment.
In the code above I was using only 1 array iterator, which was returning me an array. I decided to iterate the returned array to get each integer and insert data into MySQL, also the (test${i+1})
sets array into necessary column.
JavaScript
1
13
13
1
x.filter(item=>item===undefined?false:true).forEach((item,i)=>{
2
item.forEach(item=>{
3
const sql =`INSERT INTO test (test${i+1}) VALUES ?`;
4
const values=[
5
[item]
6
];
7
con.query(sql,[values],(err,result)=>{
8
if(err)throw err;
9
console.log("this have been recorded"+result);
10
});
11
})
12
});
13