Tagged Questions
The sqlcommand tag has no wiki summary.
57
votes
2answers
4k views
Under what circumstances is an SqlConnection automatically enlisted in an ambient TransactionScope Transaction?
What does it mean for an SqlConnection to be "enlisted" in a transaction? Does it simply mean that commands I execute on the connection will participate in the transaction?
If so, under what ...
16
votes
8answers
2k views
Do I have to Close() a SQLConnection before it gets disposed?
Per my other question here about Disposable objects, should we call Close() before the end of a using block?
using (SqlConnection connection = new SqlConnection())
using (SqlCommand command = new ...
8
votes
3answers
373 views
Why the “Non” in “ExecuteNonQuery”?
I know this is not a hell of an useful question but I can't help being bugged by it.
So,
Why said method (in *Command classes) is called
ExecuteNonQuery instead of ExecuteQuery?
Aren't those SQL ...
8
votes
3answers
4k views
Is SqlCommand.Dispose enough?
Can I use this approach efficiently?
using(SqlCommand cmd = new SqlCommand("GetSomething", new SqlConnection(Config.ConnectionString))
{
cmd.Connection.Open();
// set up parameters and ...
7
votes
1answer
2k views
How to pass table value parameters to stored procedure from .net code
I have DB on MS SQL Server 2005. In few procedures I have table parameters that I'm passing to sp in nvarchar (separated by coma) and internally divide to single values. I'm adding it in this way to ...
7
votes
1answer
363 views
SqlCommand.Cancel() causes a performance boost?
I have seen this show up several places in code, never with an explanation, just a cryptic comment above it (Declaration and execution included for an idea of context. It's just a standard procedure ...
7
votes
4answers
11k views
What is the difference between SqlCommand.CommandTimeout and SqlConnection.ConnectionTimeout?
Is there any difference between SqlCommand.CommandTimeout and SqlConnection.ConnectionTimeout in .NET?
6
votes
4answers
264 views
Parameterized SqlCommand - advantage of specifying SqlDbType?
Folks,
Unless I'm mistaken, a parameterized sql query can be generated by specifying SqlDbType for each parameter or not. It seems that I can construct an SqlParameter by providing the parameter ...
6
votes
4answers
2k views
In Java, send commands to another command-line program
I am using Java on Windows XP and want to be able to send commands to another program such as telnet.
I do not want to simply execute another program. I want to execute it, and then send it a sequence ...
6
votes
2answers
418 views
C# SqlDataReader Execution Statistics and Information
I am creating an automated DB Query Execution Queue, which essentially means I am creating a Queue of SQL Queries, that are executed one by one.
Queries are executed using code similar to the ...
5
votes
1answer
2k views
ReadOnlyException DataTable DataRow “Column X is read only.”
I've got a short piece of code that originally created an SqlDataAdapter object over and over.
Trying to streamline my calls a little bit, I replaced the SqlDataAdapter with an SqlCommand and moved ...
5
votes
2answers
762 views
Stored Proc and SqlCommand Timeout
If I run a stored proc using the SqlCommand and the SqlCommand times out does the StoredProc continue to execute or does it get force to quit when the SqlCommand disconnects?
5
votes
4answers
2k views
When would SqlCommand.ExecuteReader() return null?
When using calling the SqlCommand.ExecuteReader() method, ReSharper tells me I have a possible NullReference exception when I use the SqlDataReader object afterwards.
So with the following code:
...
5
votes
4answers
1k views
Why is some sql query much slower when used with SqlCommand?
I have a stored procedure that executes much faster from Sql Server Management Studio (2 seconds) than when run with System.Data.SqlClient.SqlCommand (times out after 2 minutes).
What could be the ...
4
votes
4answers
132 views
Does Mono treat System.Data.SqlCommands differently to .NET?
I'm having some trouble with an application that we're porting to Mono.
(For reference, the .NET runtime is 4.0, and the mono version is 2.6.7.)
EDIT: This problem persists on Mono 2.10.2
As part ...
4
votes
3answers
77 views
What are the limitations of T-SQL that can be executed by a System.Data.SqlClient.SqlCommand object?
I have some Transact-SQL that lloks like this, can it be executed through a SqlCommand object, or do I need to start learning Sql Management Objects?
BEGIN TRANSACTION
BEGIN TRY
IF NOT EXISTS
...
4
votes
4answers
827 views
Is it possible to get the parsed text of a SqlCommand with SqlParameters?
What I am trying to do is create some arbitrary sql command with parameters, set the values and types of the parameters, and then return the parsed sql command - with parameters included. I will not ...
4
votes
2answers
1k views
SqlCommand.Parameters.AddWithValue issue
I have a problem with the folowwing piece of code. I am passing a parameter (List) to a methods executing the following code.
When it executes sql throws an error saying that the proc expects a ...
4
votes
5answers
2k views
What's the best method to pass parameters to SQLCommand?
What's the best method to pass parameters to SQLCommand? You can do:
cmd.Parameters.Add("@Name", SqlDbType.VarChar, 20).Value = "Bob";
or
cmd.Parameters.Add("@Name", SqlDbType.VarChar).Value = ...
3
votes
5answers
39 views
ExecuteNonQuery inside loop
I'm trying to insert a database record inside a loop in C#.
It works when I hard code the values like this:
string query3 = "INSERT INTO furniture (room_id,member_id) VALUES (222,333);";
...
3
votes
5answers
221 views
Parsing a SQL string in c#
I have the need to Parse a Command.CommandText.
I don't want to run the query. I only want to see if the query will succeed if the command was executed.
Say i have; "SELECT * FROM SomeTable WHERE ...
3
votes
2answers
121 views
Does SqlCommand.Clone() create a deep copy or shallow copy?
Does SqlCommand.Clone() create a deep copy or shallow copy? Also, is it safe to call Clone() from multiple threads concurrently (create one command that multiple threads can copy, set parameter ...
3
votes
1answer
119 views
Output parameter value wrong
I am passing a value to a parameter in a Stored Procedure and also declaring it's direction as ParameterDirection.InputOutput. In the Stored Procedure, the parameter is also declared as an OUTPUT ...
3
votes
6answers
447 views
How do I translate a List<string> into a SqlParameter for a Sql In statement?
I seem to be confused on how to perform an In statement with a SqlParameter. So far I have the following code:
cmd.CommandText = "Select dscr from system_settings where setting in ...
3
votes
1answer
264 views
Why both SqlConnection and SqlTransaction are present in SqlCommand constructor?
I wonder, what is the reason to have this SqlCommand constructor overload:
public SqlCommand(
string cmdText,
SqlConnection connection,
SqlTransaction transaction
)
?
When I need to ...
3
votes
3answers
411 views
Calling sqlCommand in a loop increasing exec time every step
I've got a loop that executes the stored procedure in a loop with over 40,000 iterations, like so:
SqlCommand command = new SqlCommand("WriteDataToDB");
command.Connection = _connection;
...
3
votes
1answer
108 views
Select most frequent from column in
Hi i have a columm in the table and i want to select the most common item from the selected column. The table is set up
publication:
id
Title
published
I want to beable to select the most ...
3
votes
5answers
2k views
Is SqlCommand.Dispose() required if associated SqlConnection will be disposed?
I usually use code like this:
using (var connection = new SqlConnection(ConfigurationManager.ConnectionStrings["MyConn"].ConnectionString))
{
var command = connection.CreateCommand();
...
2
votes
2answers
105 views
poor performance with sqlparameter
I have a web service, so the handler is called multiple times concurrently all the time.
Inside I create SqlConnection and SqlCommand. I have to execute about 7 different commands. Different commands ...
2
votes
5answers
135 views
C# SQL insert command
Can anyone tell me the following 2 ways of inserting record creates better performance?
Case 1
SqlCommand cmd = new SqlCommand();
for (int i = 0; i < 10000; i++)
{
cmd = new SqlCommand("insert ...
2
votes
3answers
52 views
SqlCommand, passing something that could be null
I have a SQL command that I've been asked to modify, and I'm having some troubles with the fact that what I'm passing to the SQL can now be null. If I'm passing a value, I can rely on the columnName ...
2
votes
2answers
68 views
how to select all rows WHERE a string filed start with a specific string
how can i do this : select all rows WHERE a string filed start with a specific string like this :(its a command for SqlDataAdapter select command string in C#)
SELECT * FROM mytable WHERE user_id = ...
2
votes
3answers
130 views
How to Close a DataReader on Exception
I have the following code in some methods of my Data Layer:
StringBuilder sb = new StringBuilder();
SqlCommand s = new SqlCommand(sb.ToString(), conn);
try
{
SqlDataReader dr = ...
2
votes
1answer
110 views
Is this Sql-injection-proof Asp.net code?
Problem: I have a form with text values, and a function that must return a string query based on the values of the text values too.
Solution: I created a SQLCommand query with parameters, then I put ...
2
votes
3answers
616 views
Data Adapter Vs Sql Command
Which one would be better in executing an insert statement for ms-sql database:
Sql DataAdapter or SQL Command
Object?
Which of them would be better, while inserting only one row and while ...
2
votes
3answers
978 views
How to insert a c# datetime var into SQL Server
Here is the code:
string ConnectionString= @"Data Source=localhost\SQLEXPRESS;
Initial Catalog=notepad; Integrated Security=SSPI ";
SqlConnection con = new SqlConnection(ConnectionString);
...
2
votes
3answers
173 views
From .NET can I get the full SQL string generated by a SqlCommand object (with SQL Parameters)?
From the .NET environment can I get access to the full SQL string that is generated by a SqlCommand object?
Note: The full SQL string shows up in Intellisense hover, in VisualStudio, while in debug ...
2
votes
2answers
624 views
Different ways of passing sqlCommand parameters
There is a related question to this:
What's the best method to pass parameters to SQLCommand?
But I am wanting to know what the differences are and if there are any problems with the different ways.
...
2
votes
3answers
531 views
How to set isolation level on SqlCommand/SqlConnection initialized with no transaction
The following method is supposed to peroform a dirty read on an open connection. There are no transactions. Where do I set IsolationLevel?
public string DoDirtyRead(string storedProcName, ...
2
votes
2answers
212 views
How do I add multiple rows in a table?
string date = p_text_data.Text;
string sql = @"INSERT INTO Warehouse (title,count,price,date) ";
try
{
using (SqlConnection connection = ConnectToDataBase.GetConnection())
{
SqlCommand ...
2
votes
1answer
545 views
Database.ExecuteNonQuery does not return
I have a very odd issue. When I execute a specific database stored procedure from C# using SqlCommand.ExecuteNonQuery, my stored procedure is never executed.
Furthermore, SQL Profiler does not ...
2
votes
2answers
1k views
SqlCommand.Parameters.AddWithValue Not Returning Correct Results
I'll admit that I'm a bit of a newbie (though learning fast!) when it comes to using parameterized queries in C#, so I'm probably just overlooking something here, but I can't seem to figure out how to ...
2
votes
2answers
535 views
Why does a SqlException thrown by SqlCommand.ExecuteNonQuery contain all the PRINTs as errors?
When I run the following snippet
try
{
using (SqlConnection conn = new SqlConnection("I'm shy"))
{
conn.Open();
using (SqlCommand cmd = conn.CreateCommand())
{
cmd.CommandText = "PRINT ...
2
votes
3answers
3k views
C# Update Table using SqlCommand.Parameters
I'm trying to update an MSSQL table using SqlCommand, I think it's a syntax error with my T-SQL, but here is what I have so far:
SqlCommand sqlCmd = new SqlCommand("UPDATE yak_tickets SET email = ...
2
votes
3answers
266 views
SqlCommand object - set it and forget it?
I'm using SqlClient.SqlCommand object to run a few stored procs on my db. Normally when I run these manually via Query Analyzer they take up to 15 minutes to complete.
So obviously when I run them ...
2
votes
2answers
633 views
Executing a SQLCommand Without Specifiying a Transaction
I feel like I should be able to find the answer to this question but for the life of me I can't seem to get the information I'm looking for.
We have some lists of data being fetched in our ...
2
votes
6answers
652 views
SqlCommand C# Issue
The below piece of code that throws the following exception..
Error Message:
Object reference not set to an
instance of an object. Stack Trace:
at
...
2
votes
3answers
2k views
Does .net SqlCommand.ExecuteReader close connection?
In this sentence:
myCommand.ExecuteReader(CommandBehavior.CloseConnection)
does it close connection in case of exception?
1
vote
1answer
30 views
SqlCommand (CommandType Text) retrieve param collection
Is there a way to get the parameter collection from SqlCommand when CommandType = Text?
For instance:
string MyDinamicSql = @"SELECT * FROM USERS where USERName = @Param1 and USERLogin=@Param2";
...
1
vote
2answers
88 views
How to clear mysql screen console in windows?
The title is my question. I googled and try something like
mysql> !\ clear
mysql> !\ cls
mysql> system cls
mysql> system clear
blah blah ...
but none of them works.
anyone show me how ...