DaniWeb IT Discussion Community

DaniWeb IT Discussion Community (http://www.daniweb.com/forums/index.php)
-   VB.NET (http://www.daniweb.com/forums/forum58.html)
-   -   Insert Dataset into SQL Database. (http://www.daniweb.com/forums/thread15953.html)

Devin Dec 22nd, 2004 7:01 pm
Insert Dataset into SQL Database.
 
Okay heres the dilemna....

I have a Dataset("LineItems") that Stores information about so many records.

To source to this DataSet("LineItems") is not its intended ouput.

Meaning I pull this info in from one database and output to another.

My problem is i have no idea on how to write an insert statement that will insert multiple records into a SQL table. Does anyone have any pointers????

PLEASE HELP ASAP. THANKS!

bruce2424 Nov 8th, 2008 3:37 am
Re: Insert Dataset into SQL Database.
 
for int i=0 to dataset.tables(0).rows.count -1
adapter.InsertCommand = New SqlCommand(insertSQL, connection)
adapter.InsertCommand.ExecuteNonQuery()
next i

http://vb.net-informations.com/dataa...-sqlserver.htm

http://vb.net-informations.com/datas...et-dataset.htm

bruce

prit49 Nov 9th, 2008 12:35 am
Re: Insert Dataset into SQL Database.
 
in a form , I set dtpicker ( date calender ) , it is ok, i choose a date ( dd/mm/yyyy) format ( 15 /10/2008 ) , when it save in database field , it say wrong . i want my all date field will save and retrieve ( when modify ) in (dd/mm/yyyy) format. how is it possible.

sierrainfo Nov 18th, 2008 5:09 am
Re: Insert Dataset into SQL Database.
 
Imports System.Data.SqlClient
Public Class Form1
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Dim connetionString As String
Dim connection As SqlConnection
Dim adapter As New SqlDataAdapter
Dim sql As String
connetionString = "Data Source=ServerName;Initial Catalog=DatabaseName;User ID=UserName;Password=Password"
connection = New SqlConnection(connetionString)
sql = "insert into product (Product_id,Product_name,Product_price) values(7,'Product7',700)"
Try
connection.Open()
adapter.InsertCommand = New SqlCommand(sql, connection)
adapter.InsertCommand.ExecuteNonQuery()
MsgBox("Row inserted !! ")
Catch ex As Exception
MsgBox(ex.ToString)
End Try
End Sub
End Class

sierrainfo Nov 18th, 2008 5:25 am
Re: Insert Dataset into SQL Database.
 
Use Format Function.
Like :

= Format(dtpicker .Value, "dd/MM/yyyy")


All times are GMT -4. The time now is 12:44 am.

Forum system based on vBulletin Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
©2003 - 2009 DaniWeb® LLC