Comma-Separated Values are a list of plain text values delimited by commas, or a file containing one or more lists in that format.
0
votes
0answers
16 views
Generate/Download of CSV throws a Connection error PHP
So the process that I have goes like this. A user can pick a date range to view the data that he wants/needs. A Download is then available if he wants to download the file.
When doing a wide range ...
0
votes
3answers
45 views
Is there a reason to NOT use double quotes in a CSV file?
I am creating a CSV file to upload to a website that throws a fit if there's so much as an unescaped full stop.
In trying to find out which fields needed escaping I had a headache fun learning a bit ...
1
vote
2answers
29 views
Fixing a CSV using Python
I am trying to clean up the formating on a CSV file in order to import it into a database, and I'm using the following to edit it:
f1 = open('visit_summary.csv', 'r')
f2 = open('clinics.csv', 'w')
...
0
votes
3answers
17 views
import csv file with data to mysql
I'm trying to import csv file to MYSQL, and I have the following schema.
CREATE TABLE `monitor` (
`id` bigint(20) NOT NULL AUTO_INCREMENT,
`time` time DEFAULT NULL,
`domain_name` text,
`cpu_ns` ...
0
votes
1answer
16 views
PHP MySQL - Import CSV Using LOAD DATA INFILE - Determine file path?
I need some help connecting the dots on this. There's plenty of snippets floating around but I haven't found a good end to end tutorial.
For a simple custom CMS I'm building I want an option for end ...
0
votes
0answers
8 views
import single column csv file into mysql using phpmyadmin
i have a single column csv file with columns as
Mahindra Logan
Mahindra Xylo
Maruti Suzuki Swift
when I view the file with notepad+ it shows complete 514 lines
but when I view in notepad , all ...
-1
votes
0answers
19 views
Windows Batch File to parse CSV [closed]
I've been searching for a way to use a Windows Batch file to read the contents of a specific cell in a CSV, and based on a condition, output a line from the batch file.
For example, the batch file ...
0
votes
0answers
8 views
My Excel file of CSV data from Google Apps Script doesn't mirror my Google spreadsheet
I'm trying to write a script that passes information from a Google Spreadsheet, compiles it into a CSV file and emails that file.
My problem: The CSV file on my Excel file looks very different that ...
0
votes
0answers
37 views
Submit Form to CSV
I have a submit form that takes the variable $name (using URL parsing) and then is supposed to enter the info from the form into $name.csv. Here is my current code. How do I do something like this? I ...
2
votes
4answers
90 views
c++ Read from .csv file
I have this code which is supposed to cout in console the information from the .csv file;
while(file.good())
{
getline(file, ID, ',');
cout << "ID: " << ID << " " ;
...
0
votes
2answers
23 views
Read a term-document matrix from csv using python
The reason classic csv reader doesn't work on term-document arrays is that the first column of the csv file are terms, not values. Thus the file has the following syntax:
...
0
votes
0answers
3 views
Moodle bulk user CSV import
I'm trying to use a CSV a to bulk import users
username, firstname, lastname, email, idnumber, auth, country, city, institution, course1
[email protected], a, z, [email protected], a, LDAP, GB, London, B, B-A-STA
...
1
vote
0answers
30 views
degree symbol in csv file on ipad
I am creating csv file from .NET (it has utf8 encoding). It looks great from PCs, but our requirement is that file should be accessible from the iPad browser. Somehow that file does not open from ...
0
votes
0answers
15 views
Matching CSV fields to a MySql database throough a template
we are using PHP and MySql for our application.
Problem:
we get some data, we put them in a CSV file, we upload them in our database through a template, then we upload the data online.
we have ...
0
votes
0answers
9 views
I/O operation on closed file using Django forms
I have a Django form that asks for the filename of a CSV file for import. In the form that asks for the filename, I have a custom clean() method that reads the in-memory-file and validate the contents ...