CodePaste Logo
New Snippet New Snippet Recent Snippets Recent Snippets My Snippets My Snippets Web Code Search Snippets Search
Sign inor Register
Format:
Recent snippets matching tags of CSV
C#
using System;
using System.IO;
 
class Program
{
    static void Main()
    {
    //
    // It will free resources on its own.
    //
January 26, 2012 @ 7:26am
44 Views
no comments
 
Imports System.IO
Imports System.Data.SqlClient
Public Class FrmFromCSV
    Public Connection As New SqlConnection(mConnectionString)
    Private Sub OpenFileCSV(ByVal FileName As String)
        Dim cnn As New OleDb.OleDbConnection( _
        "Provider=Microsoft.Jet.OLEDB.4.0;" & _
        "Data Source=" & _
        PathFile & _
        "; Extended Properties='TEXT;HDR=No'")
by NelsonAmaya   April 30, 2011 @ 8:59am
Tags: CSV
220 Views
no comments
 
C#
 
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Linq.Expressions;
 
namespace ToCsv
{
    /// <summary>
by ahsteele   November 14, 2010 @ 3:11pm
Tags: csv
180 Views
2 comments
 
C#
using System;
using System.Collections;
using System.IO;
using System.Text;
 
namespace Handlers
{
    
    /// <summary>
    /// A data-reader style interface for reading Csv (and otherwise-char-separated) files.
by Utkarsh Puranik   February 23, 2010 @ 3:44am
912 Views
no comments
 
Imports System
Imports System.Collections
Imports System.IO
Imports System.Text
 
Namespace Handlers
 
    ''' <summary>
    ''' A data-reader style interface for reading Csv (and otherwise-char-separated) files.
    ''' </summary>
by Utkarsh Puranik   February 23, 2010 @ 3:43am
2180 Views
no comments
 
brought to you by:
West Wind Techologies



If you find this site useful and use it frequently please consider making a donation to support this free service.
Donate