Click here to Skip to main content
15,901,505 members
Everything / CommandBuilder

CommandBuilder

CommandBuilder

Great Reads

by Antonino Porcino
How to use T-SQL function SCOPE_IDENTITY() to retrieve inserted rows identity values with CommandBuilders and DataAdapters

Latest Articles

by Antonino Porcino
How to use T-SQL function SCOPE_IDENTITY() to retrieve inserted rows identity values with CommandBuilders and DataAdapters

All Articles

Sort by Score

CommandBuilder 

23 Nov 2011 by Antonino Porcino
How to use T-SQL function SCOPE_IDENTITY() to retrieve inserted rows identity values with CommandBuilders and DataAdapters
30 Oct 2022 by Dave Kreskowiak
The & character in a CMD Prompt is command separator. It says "execute the command on the left of the & character, then execute the command to the right of the & when the left command has completed execution". To get CMD to process that...
17 Jul 2012 by Rangaraman
I used rundll32.exe shell32.dll,Control_RunDLL telephon.cpl,,1 and rundll32.exe shell32.dll,Control_RunDLL modem.cpl,,add to get the modem tab in Phone and modem option from control panel.My intension is to navigate from modem tab to ADD -> Select "Don't detect my modem; I will select it...
17 Jul 2012 by barneyman
how about HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Class\{4D36E96D-E325-11CE-BFC1-08002BE10318}?
4 Feb 2013 by coffeenet
HiI need to input this command, it is written in bash, but I my terminal is zsh. How do I rewrite it?ssh username@rserver.com -L 127.0.0.1:8888:*:11111Thanx!
26 Aug 2013 by Sudhakar Shinde
Use google to search answers for such questions..Here is one reference link..[Creating an Executable jar File] from command prompt.
29 May 2016 by George Jonsson
Not sure which code block you want to keep, so I used the uncommented code.1. You should always use the using statement, as it will close the connection automatically or use try-catch-finally2. You forgot to assign the CommandText property3. You have an integer type in your parameter...
15 Jun 2017 by Member 9983063
Hello, Guys, I hope you will be fine.I am facing another issue in my project and now that is when I delete values so I get an error I am using a checkbox for selected multiple rows by data grid view and delete all selected rows but when I click the button so sometimes it delete but mostly I will...
15 Jun 2017 by Wendelius
One problem is that you concatenate the values directly to the SQL statement. This introduces conversion errors, leaves you open to SQL injections and so on. The fix would be to use OleDbParameter objects. While the article is using SqlParamater, the idea is the same so have a look at Properly...
31 Oct 2022 by pkfox
Hi all, Ihave this Linux shell script which gets an Azure Web token #!/usr/bin/bash clear CLIENTID=41eeebbd-ea7f-4f49-a936-1624b6cb9c72 CLIENTSECRET=UIC8Q~nj3cDetR4XQlSNbm19WpywweJMi.CuwbGA RESOURCE=api://41eeebbd-ea7f-4f49-a936-1624b6cb9c72...
30 Oct 2022 by Richard MacCutchan
The & in a Windows command is used to allow multiple commands on the same line. So client_id after the first one looks like the next command. You need the entire parameter string in double quotes, so try something like: set...
31 Oct 2022 by pkfox
Thanks to all of you I now have this @echo off set CLIENTID=41eeebbd-ea7f-4f49-a936-1624b6cb9c72 set CLIENTSECRET=UIC8Q~nj3cDetR4XQlSNbm19WpywweJMi.CuwbGA set RESOURCE=api://41eeebbd-ea7f-4f49-a936-1624b6cb9c72 set...
26 Aug 2013 by rahul_dhote
I'm trying to create a jar file using command prompt can somebody tell me how to create it
13 Oct 2022 by Nour Abdel-Salam
In a search form I have a dromdown list(it shows the car name and the c_id is the value) when I select the item in the dropdown I want to view the data in the next textboxes. Always I get the error in the last line I don't know what the problem...
13 Oct 2022 by OriginalGriff
Without knowing the exact error message, or having any access to your DB we can only guess. But ... VB array indices are zero based: so GetString(1) may be wrong, and you have not read any rows from the reader (or checked that there are actually...