1
vote
4answers
36 views
in this case Csv or Mysql?
I am starting new project. In my project I will need to use local provinces and local city names. I do not want to have many mysql tables unless I have to have or csv is fast. For …
0
votes
4answers
58 views
Sort a CSV by date in Python
Hi!
I'm trying to sort a CSV file and I want the items sorted by date in reverse order: newest first.
def SortCsvByField( filename, fieldNo, sep = ',' ):
records = [line.split …
-3
votes
4answers
75 views
Python - read in numric csv file, calc mean value of all entries in each row
Hi, could someone help me with a Python problem. I cant seem to find any code examples for the following scenario:
Read in user specified csv file.
Then for each row in file, calc …
1
vote
2answers
50 views
Reading a csv file in Python with different line terminator
I have a file in CSV format where the delimiter is the ASCII unit separator ^_ and the line terminator is the ASCII record separator ^^ (obviously, since these are nonprinting char …
-1
votes
2answers
90 views
How to create csv file from unequal length arrays in Perl?
I have to parse a file so that I can import it to excel. So, I thought the best way was to create a csv file. In this file, I have to divide contents into different categories and …
0
votes
8answers
56 views
Styling rows in table that uses CSV data through PHP
Hi, I've been working on this simple code that puts a CSV file into a nice table. But because the data is imported, styling ODD rows is a pretty hard thing to do.
All I need woul …
0
votes
6answers
77 views
Parse CSV string into Array of Integers
I have a text box field inputs 123,145,125 I to separate this field into an array of integers. And validate this field true or false if everything is parsed right.
CODE:
privat …
0
votes
5answers
87 views
Getline reading in a csv very oddly
I am trying to read a csv using get line to extract three variables separated by commas. Name, Course, and Grade.
I am reading in the first line fine but it puts in weird new line …
-2
votes
2answers
69 views
How can I convert an Excel file to CSV with Perl’s Spreadsheet::WriteExcel?
I have an Excel sheet and am able to convert it into .csv format using Perl. My only problem is that some of my data in the Excel sheet cells contain commas and that
has to be ret …
1
vote
4answers
71 views
Commercial .NET CSV Parser/Library
Hi
Our company has pretty much banned us from using open-source libraries in our commercial products due to licensing issues. We are currently looking for a commercial .NET libra …
0
votes
3answers
50 views
SQLite - SELECT over multiple entries of the same data/column
I am a bit new to SQLite, and I am having a slight dilemma about my database design. I'll explain. Suppose you and your friends use a number of different nicknames on the Internet …
1
vote
4answers
60 views
PHP - Sanitise a comma seperated string
What would be the most efficient way to clean a user input that is a comma seperated string made entirely on numbers - e.g
2,40,23,11,55
I use this function on a lot of my in …
3
votes
2answers
31 views
Excel: Default to TEXT rather than GENERAL when opening a .csv file
Is is possible to change the default data type Excel uses when opening a .csv file? I would like Excel to default to TEXT rather than General for the Column Data Format when readin …
0
votes
1answer
52 views
JSP page without HTML code for exporting data to Excel Sheet
Hi friends,
I am facing a problem in exporting my data to excel sheet, this is because of some code which other developers in my team made. So the main problem is to export the dat …
1
vote
2answers
38 views
Problem with rows and columns from a CSV
Hi, I'm having a major problem with writing values into a new CSV file.
I receive a csv file from which I parse all of the values. This works fine, I've brought this up and put it …
