0
votes
1answer
8 views
Pilcrow appears in all the column values after importing from CSV file - MYsql
Hello All,
my CSV content looks like this
1234,123;123;123
5675,123;567;234;565
No Space is provided at the end of each row in CSV i.e. 1234,123;123;123(No space here)
Imported this using the …
0
votes
5answers
55 views
How to import multiline csv files?
I got a file in this format.
"abc";"def";"ghi
asdasd
asdasd
asd
asd
aas
d
"
Now i want to import it with Java. Does anyone know a library that support this kind of import?
3
votes
1answer
28 views
csv utf-8 writer - compability with python2.4
At the bottom of this manual http://docs.python.org/library/csv.html we have example of UnicodeWriter
But how can i use this example in python 2.4
I got exception about …
-1
votes
3answers
54 views
Please help, my program is not accepting MySQL floats
I have to use a java program . I need to understand it and then modify it. The program has a source folder. It has a lot of java files. the program has a GUI interface. i have imported the program in …
0
votes
2answers
25 views
convert from a 2d array to nested_set in Ruby on rails
I have a tree structure in a .csv file (nodes are of type text), and after reading the csv i want to store the data in a ruby object. I went through a few tree plugins and i think nested_set would …
1
vote
2answers
23 views
Excel changes date formats
I run a process to produce a rather large CSV file of data. Sometimes I find it helpful to open the CSV in excel, make changes manually, and then re-save. However, if there are dates in the CSV, …
1
vote
3answers
86 views
What character set is this?
I received a bunch of CSV files from a client (that appear to be a database dump), and many of the columns have weird characters like this:
Alain Lefèvre
Angèle Dubeau & La …
1
vote
2answers
97 views
python csv into dictionary
I am pretty new to python. I need to create a class that loads csv data into a dictionary.
I want to be able to control the keys and value
So let say the following code, I can pull out worker1.name …
0
votes
4answers
51 views
Read a csv data file and reutrn one specific StudentID marks for all thier modules in Java
Hi, at the moment I have this:
import java.util.*;
import java.io.*;
import java.io.BufferedReader;
import java.io.FileReader;
public class StudentID {
public static void main(String[] …
0
votes
7answers
144 views
Parsing a comma-delimited std::string
If I have a std::string containing a comma-separated list of numbers, what's the simplest way to parse out the numbers and put them in an integer array?
I don't want to generalise this out into …
0
votes
2answers
43 views
Django loaddata ValidationError
This thread got too confusing (for me) so I am asking the question again. I could not make the csv2json.py script mentioned in the original question work. I am just trying to find a way to import data …
0
votes
3answers
44 views
csv2json.py error
I am trying to run the script csv2json.py in the Command Prompt, but I get this error:
C:\Users\A\Documents\PROJECTS\Django\sw2>csv2json.py csvtest1.csv wkw1.Lawyer
Converting …
1
vote
1answer
34 views
Is it possible to keep the column order using the Python csv DictReader
For example, my csv has columns as below:
ID, ID2, Date, Job No, Code
I need to write the columns back in the same order. The dict jumbles the order immediately, so I believe it's more of a …
0
votes
1answer
52 views
How to populate sqlite3 in django?
My plan is to collect data from websites in batches (lawyer bios from each firm's website; since they are all different, I will use a modified spider for each site) and convert each batch into a csv …
0
votes
3answers
73 views
Groovy csv parser and export to database
How can I parse my CSV file without parsing first line ?
This class work but I don't want to parse the header of my CSV.
import groovy.sql.Sql
class CSVParserService {
boolean transactional = …
