0
votes
1answer
15 views
Two SqlCommand Objects and Updating One Source Table
I have two update sql statements for two SqlCommand object to update one DataTable with DataSet object to One Source Table. When I click on update button that's update only the fir …
0
votes
2answers
18 views
How to extract the Sql Command from a Complied Linq Query
In normal (not compiled) Linq to Sql queries you can extract the SQLCommand from the IQueryable via the following code:
SqlCommand cmd = (SqlCommand)table.Context.GetCommand(query …
3
votes
2answers
38 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?
0
votes
2answers
52 views
Using SqlCommand Object in VB.NET
Can I use two command object with one open connection in one procedure at VB.NET?
3
votes
8answers
292 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 (SqlComma …
0
votes
3answers
45 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 obvio …
0
votes
1answer
24 views
In what situations is the prepare method of a SqlCommand object useful?
Does any body know that in what situations the prepare method of an ADO.NET SqlCommand Object is useful?
0
votes
4answers
158 views
Why am I getting a sqlcommand timeout in the application?
I am getting sqlcommand timeout issues when I debug the application even though the stored procedure runs in less than 25 seconds in management studio. I set the timeout attribute …
0
votes
5answers
214 views
How to add a number to a Sqlcommand.Parameters?
Here's my method:
public void EjecutarGuardar(string ProcedimientoAlmacenado, object[] Parametros)
{
SqlConnection Connection = new SqlConnection(Configuration …
1
vote
2answers
188 views
sql command for reading a particular sheet, column …
Dear All ...
This is probably a very stupid question for SQL stalwarts, but I just want one SQL command.
Details,
I am using a data analysis tool called R, this tool uses ODBC t …
1
vote
2answers
347 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 …
0
votes
4answers
131 views
How to avoid accidentally closing an SQL Connection in Java?
Currently what i am doing for transaction management is:
Connection connection = getConnection();
connection.setAutoCommit(false);
updateTableX ( connection, ... );
updateTableY ( …
1
vote
2answers
116 views
Does SqlDbType.DateTime not store seconds?
The environment I am using is C# 3.5, ado.net, sqlserver 2005.
using System.Data; using System.Data.SqlClient;
I am using a SqlCommand cmd.Parameters of SqlDbType.DateTime to c …
1
vote
2answers
115 views
Executing a SQLCommand Without Specifiying a Transaction
Hi,
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 …
2
votes
6answers
314 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
System.Data.SqlClien …
