Im using DHIS 2 Live with embedded database.
I have and excel, with some data, i transformed it to csv and tried to import it using the import tools.
ImportTools
ImportExample
It doesnt print any error just stop and does not insert anything.
I tried to import some data in json too but i dont know if i should import it like data or meta data.
Related
I'm trying to import data into a module I created in Odoo. However, here is what comes out of it:
Do you know the reason?
It is a file containing 400 lines, I tried to reduce the import with 50 lines is the same error.
Thank you
This error normally happens when the source code of Odoo is modified or import fields are not correct. you can refer this link.
please try to import sample data with some fields.
I'm working on something and i want to import a csv file into my database.
I know the basic step of importing but not getting that data properly into my table columns. Here is the pic of .csv that i want to import.
This is what i'm getting.
My backend code using Python 2.7 able to convert from dataframe to json using df.to_json()but I need to export this json file into MySQL database since frontend code using angular 2 is javascript.
import pandas as pd
from sqlalchemy import create_engine
df.to_csv("abc.csv")
df.to_json("abc_json.json")
engine = create_engine('mysql+mysqldb://user:pw#sbc.mysql.pythonanywhere-services.com/abc$default')
df.to_sql(name='KLSE', con=engine, if_exists='replace')
Code above was run without problem but I want to MySQL database in json format so that frontend code can query.
I can not find related link in google or stackoverflow with similar issues.Thanks for help.
One way to import csv file is by using copy command in cqlsh. I am wondering is there an effective way to import csv file from DevCenter ?
Sorry, there currently is no way to import from CSV using DevCenter.
I have a large csv file of lat/long points that I would like to import into Parse into a class that has already been created with existing lat/long points. Unfortunately parse does not allow you to import "Geopoints" with their CSV import tool. They only let you import that standard data sets. (Strings, Arrays, Booleans etc.) Does anyone know of a way to import them into an existing class? Thanks.