Posts by Matheus Rohde • 63 points
3 posts
-
1
votes0
answers123
viewsQ: Generating CSV file with Fast-csv in Nodejs
I need to write a CSV with data from a JSON, but I cannot generate the file with the data. I am using fast-csv Package. No error is reported during execution. Follows my code: async function…
-
2
votes1
answer95
viewsQ: How to insert JSON values in Postgresql using Nodejs?
I intend to perform an Insert in a table in Postgresql. The values that will be used in the query are from a JSON in which I have access through a GET. fetch(…
-
2
votes1
answer55
viewsQ: Inserting CSV into Postgresql with Nodejs
I want to insert a CSV into a postgresql table. CSV contains rows with multiple column numbers. Ex: 1,2,3 1,2,3,4,5 1,2,3,4,5,6 1,2,3,4 When performing the insertion, the following error occurs:…