csv

reading a url and getting back a csv file

i have a URL and when i load it up in a browser it recognizes it as a csv file and pops up excel "do you want to open". I want to do this programatically so i can have a winforms app use that url and parse the csv file directly. what is the quickest way to do this? EDIT: i tried using WebClient and i am getting the folowing erro...

How to import csv files selected by user to database

Hi I wonder how i can import csv files that selected by user to database using php. is there any practical way on this ? thanks ...

library to convert CSV to XML, MYSQL, html, RSS, JSON and etc ?

it can be any language. is there a library, software, or plugin that will convert the csv to the various formats? ...

LOAD DATA LOCAL, How do I skip the first line?

I'm trying to Load a CSV file into my MySQL database, But I would like to skip the first line. I fact It contains the name of my columns and no interesting data. Here is the query I'm using: LOAD DATA LOCAL INFILE '/myfile.csv' INTO TABLE tableName FIELDS TERMINATED BY ',' ENCLOSED BY '\"' LINES TERM...

How to compare two column values which are comma separated values?

I have one table with specific columns, in that there is a column which contains comma separated values like test,exam,result,other. I will pass a string like result,sample,unknown,extras as a parameter to the stored procedure. and then I want to get the related records by checking each and every phrase in this string. For Example: T...

Selecting a tree from a csv using LinQ

I've got a csv with 35K rows with, among other, the following collumns: articleID, description, class1, class2, class 3. the class collumns represent the categories to which the products belong. class1 is the main category, class2 is a subcategory of class1 and class3 is a subcategory of class2. Now i want to extract the categories in a ...

Concat field value to string in SQL Server

I need a similar function to Oracle WM_CONCAT in SQL Server, which returns a comma separated list of whatever field you pass it as argument. For example, in Oracle, select WM_CONCAT(first_name) from employee where state='CA' returns "John, Jim, Bob". How can I do this in SQL Server? Thanks ...

Looping through an array of arrays, changing output on a given line(s)

This is what im using to loop through an array of arrays. $csvpre = explode("###", $data); $i = 0; $bgc = 0; foreach ( $csvpre AS $key => $value){ $info = explode("%%", $value); $i++; if($i == "1"){ echo "<tr bgcolor=#efefef><td></td>"; foreach ( $info as $key => $value ){ echo "<td>$value</td>"; } ...

Better to filter a stream of data at its start or end?

Hi folks, I'm working on a project in which I need to process a huge amount (multiple gigabytes) of comma separated value (CSV) files. What I basically do is as follows: Create an object that knows how to read all related files Register with this object a set of Listeners that are interested in the data Read each line of each file,...

display csv file as attachment vb.net or C#

I have a csv file as an attachment to the inbox. They should be able to view the attachment when they click on the link, but how do I display them the csv attachments??! the browser just parses it and displays the content instead of poping the open/save window. anyone had to open a csv file as an attachment on web before? thanks. ...

Generate xml from csv data in conformance with given xsd schema

I have an xml schema and csv data to generate corresponding xml files. I found this, how to generate xml files from given CSV file. But with my schema, it's always the same mapping because of the element. So the last 5 columns are mapped according to the DataType column. I could expand the code with case switch, and map every element ...

Export from Excel to text file without line breaks

Hi, I have a regular Excel spreadsheet with only 1 column. I want to export it to a text file with a separator. I am not interested in separating columns, since I only have one. My concern is to export with separators instead of line breaks so that my final result is a simple list like this "item1","item2","item3"... and so on. item1, i...

Return string of description given string of IDs (separated by commas)

Hi SQL experts, I have one table A that has a column C and a lookup table (lookup) that provides a description given an ID. Here the setup: table A with column C values: 1,2,3 2,3,4 table lookup: 1, 'This' 2, 'is' 3, 'tricky' 4, 'SQL' Provide a SQL (SQL Server 2005) statement that returns the following strings: Input: 1,2,3 Out...

Remove html formating "&gt;" from text file using Python csv.reader

I have a text file with ; used as the delimiter. The problem is that it has some html text formating in it such as &gt; Obviously the ; in this causes problems. The text file is large and I don't have a list of these html strings, that is there are many different examples such as $amp;. How can I remove all of them using python. The fil...

Reading date and time from CSV file in MATLAB

datetime, M01, M02, M03, M04, M05, M06 8/15/2009 0:00, 5.8, 7.8, 7.8, 7.3, 0, 7.9 8/15/2009 0:10, 7.1, 8.1, 8.1, 7.7, 0, 8.1 8/15/2009 0:20, 6.8, 7.4, 7.6, 7.1, 0, 7.3 8/15/2009 0:30, 5.6, 6.8, 7.1, 6.6, 0, 6.8 8/15/2009 0:40, 3.9, 6.2, 6.4, 6.2, 0, 6.4 8/15/2009 0:50, 4.6, 5.5, 6.1, 5.8, 0, 5.6 8/15/2009 1:40, 7, 7, 7.2, 6.9, 0, 6.3 C...

export query result as CSV through PHP

Say I have stored a query in a variable called $query. I want to create small hyper link called "export as CSV" on the results page. How do i do this? ...

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, smith, 11 2, jane, doe, 14 Save to array named people: people[0][0] would equal id people[2][1] would equal jane This is what I currently have: url = 'http://u...

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 of the files and comparing the totals across the various files e.g. compare the total from file 1 to the total from file 5. The format of each file is the ...

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 query via the ORM and present the result in a Table in the template. here the end of the view: return render_to_response(template, {'form': form, 'object_list': ...

.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 utility. Do any such libraries/utilities exists? ...