No announcements
Found 1292852 threads
-
1 Votes
Insert multiple rows into database
The other option is to insert one row at a time, inside a database transaction... but whether that works for you depends on your exact problem, the ...Answered | 2 Replies | 4186 Views | Created by Agalo - Friday, August 21, 2009 4:32 AM | Last reply by _SuDhiR_ - Friday, August 21, 2009 4:43 AM -
0 Votes
Insert multiple rows in a table
Try this, Dim conn As New OleDb.OleDbConnection("Your Connection String Here") Dim comm As New ...Answered | 2 Replies | 3088 Views | Created by Borna Volaric - Thursday, September 30, 2010 1:34 PM | Last reply by Karl Grear - Thursday, September 30, 2010 3:57 PM -
1 Votes
Insert multiple rows with a single INSERT statement
He asked using single INSERT key for inserting multiple records in a single table.Answered | 11 Replies | 96808 Views | Created by Ryan K - Thursday, February 9, 2006 11:33 PM | Last reply by scott_morris-ga - Monday, December 9, 2013 2:18 PM -
1 Votes
Multiple row data insertion or updation
Multiple Ways to do Multiple ...Answered | 5 Replies | 2162 Views | Created by stylish16 - Thursday, March 1, 2012 8:07 PM | Last reply by Bob Shen - Tuesday, March 13, 2012 2:34 AM -
0 Votes
Problem with Insert row in database
Im trying to make a method that create a dataset from witch i can insert a row in my database.Answered | 7 Replies | 2892 Views | Created by h06chram - Sunday, September 14, 2008 4:53 PM | Last reply by h06chram - Tuesday, September 16, 2008 12:02 PM -
2 Votes
Procedure to insert data in multiple rows
You can insert multiple rows using a single SQL INSERT statement: INSERT INTO Table ( Column1, Column2 ) VALUES ( Value1, Value2 ), ...Answered | 5 Replies | 1479 Views | Created by sreekanth.jonna - Saturday, September 20, 2014 5:16 PM | Last reply by Ahsan Kabir - Monday, September 22, 2014 1:20 PM -
2 Votes
Insert multiple rows from unbound datagridview to database table
Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click Dim insertCount As Integer = 0 Dim insertCheck As Integer = 0 Dim ...Answered | 2 Replies | 2066 Views | Created by alex0210 - Saturday, October 15, 2016 2:36 AM | Last reply by Kareninstructor - Saturday, October 15, 2016 8:16 AM -
0 Votes
How can I insert multiple rows?
Hi SebaSQL, The INSERTED table is a special table which keeps only the rows which are inserted, therefore, we are using this INSERTED table to ...Answered | 4 Replies | 1462 Views | Created by SebaSQL - Thursday, May 28, 2020 5:22 PM | Last reply by Lily Lii - Monday, June 1, 2020 9:34 AM -
1 Votes
Multiple Insert
I just published a blog post about this scenario ...Answered | 3 Replies | 2713 Views | Created by MJFara - Monday, December 31, 2012 5:43 AM | Last reply by MJFara - Thursday, January 3, 2013 3:09 AM -
0 Votes
How to Insert datagridview multiple selected rows in Mysql
Hello, There are many ways to handle this but would suggest if there are existing rows and new rows to add a boolean column to the DataTable used to populate the ...Answered | 3 Replies | 2178 Views | Created by Deo Asoler - Friday, November 13, 2015 9:44 AM | Last reply by Kareninstructor - Friday, November 13, 2015 11:54 AM -
0 Votes
Insert Function Creates Multiple Rows
I also must have misexplained, because the records are supposed to be inserted as one row, but this code inserts them separately.Answered | 2 Replies | 597 Views | Created by BlueHour - Saturday, May 10, 2014 9:20 PM | Last reply by BlueHour - Monday, May 12, 2014 2:07 AM -
0 Votes
Inserting Multiple rows to MsAccess using DataAdapter.Update
>Is it possible to push entire table with new rows into DataBase without writing insert statement?Answered | 8 Replies | 1713 Views | Created by Rajesh Harwani - Thursday, May 29, 2014 9:04 AM | Last reply by BonnieB - Saturday, May 31, 2014 11:24 PM -
5 Votes
Why inserting multiple rows fail?
I'll add the rows to the table another way.Answered | 8 Replies | 1389 Views | Created by Inarius01 - Wednesday, March 5, 2014 7:20 AM | Last reply by Visakh16 - Wednesday, March 5, 2014 8:46 AM -
0 Votes
Can the SQL server database engine sure insert order if insert multiple row at once
If you are INSERTing multiple rows with an INSERT INTO ...Answered | 11 Replies | 4894 Views | Created by Jacky_shen - Wednesday, December 7, 2011 3:20 AM | Last reply by Jacky_shen - Wednesday, December 7, 2011 5:15 AM -
0 Votes
Insert multiple records in database using grid
If you use TableAdapter for update / instert, it will call update/instert query in a loop, this loop will bigger as your number of modified rows.Answered | 5 Replies | 4821 Views | Created by Atul2410 - Monday, February 15, 2010 1:29 PM | Last reply by Atul2410 - Monday, February 22, 2010 2:22 PM -
1 Votes
adding new row at datagridview and insert the data into database
query=update%20datagridview&rq=meta:Search.MSForums.ForumID(0f60fa48-1ceb-41ee-a10a-0dfcee7e19bd)+site:microsoft.com&rn=Visual+Basic+General+Forum Then you can also yourself ...Answered | 2 Replies | 3797 Views | Created by simon tiong - Wednesday, April 21, 2010 3:04 PM | Last reply by Cor Ligthert - Wednesday, April 21, 2010 5:19 PM -
2 Votes
Inserting multiple rows using a button.
Sub somesub() Dim NumRows As Long Dim Lastrow As Long NumRows = ...Answered | 5 Replies | 1670 Views | Created by Davidnew2vba - Friday, August 16, 2013 9:06 AM | Last reply by Davidnew2vba - Sunday, August 18, 2013 3:54 PM -
0 Votes
Multiple rows affected message for a single insert
,ie, 1 row for your actual insert and the next is for actual execution plan.Answered | 1 Replies | 4344 Views | Created by John Couch - Saturday, March 8, 2014 11:36 PM | Last reply by SQLZealots - Sunday, March 9, 2014 3:02 AM -
1 Votes
Save Multiple rows from GridView to mysql Database
pls hellp me how to insert Multiple rows from GridView to mysql DatabaseAnswered | 1 Replies | 1127 Views | Created by no[one] - Sunday, April 1, 2018 6:06 AM | Last reply by Cor Ligthert - Sunday, April 1, 2018 10:45 AM -
1 Votes
[WPSL]How can insert multiple rows in to SQLiteWinRT database for Windows Phone 8 using C#.net.
See this link for ...Answered | 5 Replies | 1017 Views | Created by SrinivaaS Birlangi - Thursday, August 13, 2015 7:09 AM | Last reply by GalleryIsUsed - Friday, August 21, 2015 12:13 PM - Items 1 to 20 of 1292852 Next ›
No announcements