0
votes
7answers
133 views
C# - Writing a CSV file in .net
I have a requirement to export a data set as a CSV file.
I have spent a while searching for a set of rules to go by and realised there are quite a few rules and exceptions when w …
0
votes
2answers
12 views
Load csv into oleDB and force all inferred datatypes to string
Im trying to load a csv file into a datatable using oledb.
This is no problem but unfortunately one of the fields which looks numeric has a string value in about 3% of the fields …
0
votes
4answers
41 views
How to Create a CSV file using PHP (and upload it).
For example, I have a variable "$foo" that includes all the data which I want to show in the CSV:
$foo = "some value,another value,last value";
My goal is to:
Create a CSV fil …
0
votes
2answers
30 views
MySQL command to search CSV (or similar array)
I'm trying to write an SQL query that would search within a CSV (or similar) array in a column. Here's an example:
insert into properties set
bedrooms = 1,2,3 (or 1-3)
title = nic …
0
votes
2answers
14 views
Leading Zero is dropped when converting a csv file to data table using oledb
I have a csv file from which I have to populate different tables in database
I am using Microsoft.Jet.OleDb.4.0 to convert csv file to data table from where I proceed forward
the …
1
vote
4answers
44 views
Converting CSV of unknown size to custom Object with C#
I am trying to import a file in from my clients custom software. The file is basically a csv file with some custom escape characters in it. I am reading in the file line by line, t …
0
votes
3answers
50 views
converting csv to xml with an xsd
I am trying to find a reusable way of taking a CSV file and generating an XML file from it that conforms to a specified XSD. I haven't really found a reusable approach for this. I …
0
votes
4answers
159 views
Easiest way to combine ‘l’,’e’,’t’,’t’,’e’,’r’,’s’? C# / .NET
I have a string similar to
'l','e','t','t','e','r','s'
or
('l','e','t','t','e','r','s')
I know this should be very easy but i dont know how. I know replacing ' and , with "" …
0
votes
2answers
29 views
Is it possible to paste Excel / CSV data from clipboard to DataGridView in C# ?
I use DataGridView control to manage a simple dictionary (several columns and a few hundred rows). DataGridView functionality is almost sufficient. I can add new rows, modify value …
0
votes
2answers
57 views
csv download in a django template
In a django app, i need to show the result of a search, and let the user downloading a csv file of the result.
Actually i just wrote a view that take the form args to make the quer …
0
votes
1answer
24 views
Selenium RC: how to capture/handle error?
Hi, My test uses Selenium to loop through a CSV list of URLs via an HTTP proxy (working script below). As I watch the script run I can see about 10% of the calls produce "Proxy err …
0
votes
1answer
23 views
How to force scheme.ini to be used for MS Text Driver?
I am creating this huge csv import, that uses the ms text driver, to read the csv file.
And I am using ColdFusion to create the scheme.ini in each folder's location, where the fil …
0
votes
3answers
43 views
Totaling figures in .csv files using Excel
I have 12 .csv files produced by another program. The .csv files contain numeric data, separated by commas.
I need an easy way of totaling the values in certain columns in each …
1
vote
2answers
39 views
.Net producing CSV file
I need to create a CSV file in C#
I could do this myself and I have a java utility I wrote to do this as a reference. However it would be easier to use an existing .net library or …
0
votes
3answers
40 views
FasterCSV: columns into an array — rails
I'm trying to get fastercsv setup so that rather than parsing each row, it will place each column into an multi array.
CSV import file:
id, first name, last name, age
1, joe, smit …
