0
votes
0answers
18 views
django download csv file using a link
I am a new to django and python. Need some guidance in this quest.
Case: When the user hits the submit button on a form, it should display Success page and a link where they can download the results. …
0
votes
3answers
33 views
How to parse file in php and generate insert statements for mysql?
In case of csv file we have fgetcsv in php to parse and get the output but in my case file is .dat and I need to parse it and store it into MySQL Database and so do we have any built in function in …
0
votes
5answers
57 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?
1
vote
3answers
88 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 …
0
votes
2answers
26 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
votes
3answers
56 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 …
3
votes
1answer
30 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 …
0
votes
7answers
147 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 …
1
vote
2answers
103 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 …
1
vote
2answers
24 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, …
0
votes
1answer
85 views
How do I transfer data in .csv file into my sqlite database in django?
This is my models.py
from django.db import models
class School(models.Model):
school = models.CharField(max_length=300)
def __unicode__(self):
return self.school
class …
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 …
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
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
3answers
80 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 = …
