TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
Vaishnavi Rangamani
NA
11
3.6k
Hi... I wanna add datum from CSV into SQL server DB table.
Mar 31 2014 7:56 AM
I have tried this code for that in which it displays a result that neglects the first row. To include first row also what should i have to do?
My
samplecsv.txt
file is as below.
2,10.100.10.12,Murali,BB-CC-00-11-22-33,CC-DD-11-AA-00-BB
3,10.100.100.89,vaishnavi,AA-00-00-00-00-00,44-00-00-00-00-01
4,10.100.10.12,Murali,BB-CC-00-11-22-33,CC-DD-11-AA-00-BB
5,10.100.100.89,vaishnavi,AA-00-00-00-00-00,44-00-00-00-00-01
6,10.100.10.12,Murali,BB-CC-00-11-22-33,CC-DD-11-AA-00-BB
7,10.100.100.89,vaishnavi,AA-00-00-00-00-00,44-00-00-00-00-01
8,10.100.10.12,Murali,BB-CC-00-11-22-33,CC-DD-11-AA-00-BB
private void button1_Click(object sender, EventArgs e)
{
SqlConnection con = new SqlConnection(@"Data Source=DEV-CHE-VRAN-01;Initial Catalog=SolarWindsOrion;Integrated Security=True");
StreamReader sr = new StreamReader("C:\\samplecsv.txt");
string line = sr.ReadLine();
string[] value = line.Split(',');
DataTable dt = new DataTable();
DataRow row;
foreach (string dc in value)
{
dt.Columns.Add(new DataColumn(dc));
}
while (!sr.EndOfStream)
{
value = sr.ReadLine().Split(',');
if (value.Length == dt.Columns.Count)
{
row = dt.NewRow();
row.ItemArray = value;
dt.Rows.Add(row);
}
}
SqlBulkCopy bc = new SqlBulkCopy(con.ConnectionString, SqlBulkCopyOptions.TableLock);
bc.DestinationTableName = "task2";
bc.BatchSize = dt.Rows.Count;
con.Open();
bc.WriteToServer(dt);
MessageBox.Show("Inserted Successfully");
bc.Close();
con.Close();
}
After Executing the above program, i got the result as follows.
3
10.100.100.89
vaishnavi
AA-00-00-00-00-00
44-00-00-00-00-01
4
10.100.10.12
Murali
BB-CC-00-11-22-33
CC-DD-11-AA-00-BB
5
10.100.100.89
vaishnavi AA-00-00-00-00-00
44-00-00-00-00-01
6
10.100.10.12
Murali
BB-CC-00-11-22-33
CC-DD-11-AA-00-BB
7
10.100.100.89
vaishnavi
AA-00-00-00-00-00
44-00-00-00-00-01
Help me to resolve this issue..
Reply
Answers (
4
)
Making Setup with crystal report in project
Three dimensional array