Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
3answers
436 views

Execute scalar in T-SQL

What is the best way to do the equivalent of execute scalar in T-SQL? In other words, using SQL, how can I get the first column of the first row of the first result set when I call a stored ...
2
votes
4answers
4k views

Int32.TryParse() or (int?)command.ExecuteScalar()

I have a SQL query which returns only one field - an ID of type INT. And I have to use it as integer in C# code. Which way is faster and uses less memory? int id; ...
2
votes
1answer
3k views

Connection Leak in C# DataBase.ExecuteScalar

The following method in a static class gives me a time out exception because the connection pool is maxed out. While in debug mode I looked in sql Management studio and saw there were 150 sleeping ...
2
votes
2answers
4k views

Can you use cmd.ExecuteScalar when the sproc uses RETURN @value

Can you use int blah = Convert.ToInt32(cmd.ExecuteScalar()); When the sproc's last statement does: RETURN @value I can only get it to work if it does: SELECT @value Also, this gives me a ...
1
vote
3answers
72 views

Display SQL query result in a label in asp.net

I'm trying to display the SQL query result in a label but it's not showing. This is my code: string result = "SELECT ACTIVE FROM [dbo].[test] WHERE ID = '" + ID.Text + "' "; SqlCommand ...
1
vote
2answers
42 views

Executescalar query code issue

Im trying to return the member id in this query below. If i run the query as just as a query i get 20 but when i exectute the code it returns a zero. What am i doing wrong here? public int ...
1
vote
3answers
187 views

ExecuteScalar returns null or DBNull (development or production server)

I'm trying to add a column to an existing DataRow in C#. Afterwards the column will be filled with a single value from my database. DataRow dr already exists and column "COLNAME" also exists. comTBP ...
1
vote
4answers
372 views

How to create array DbParameter[]

The manual says that the ExecuteScalar method should be used like: public T ExecuteScalar<T>( string commandText, CommandType commandType, params DbParameter[] parameters ) But how ...
1
vote
3answers
220 views

ExecuteScalar returns 0 executing a stored procedure

I'm refactoring a C# program that calls a stored procedure that ends with: SELECT @ResultCode AS ResultCode The C# code looks like this: SqlDbCommand.CommandType = ...
1
vote
4answers
316 views

SqlCommand.ExecuteScalar - specify a particular data item

I have a Stored Procedure which returns 10 columns of data. Using cmd.ExecuteScalar() returns the value of the 1st column from the 1st record. How can I change this so that I can return different ...
1
vote
3answers
31 views

Any chance of failing one query while using two queries in ExecuteScalar

I have written a query which is a composite query like one update query and one insert query is there. I am using ExecuteScalar. Is there a possibility that one query will fail and other will be ...
0
votes
3answers
58 views

Select Command parameter issue

How do I properly declair a parameter in the code below. Im getting underlines on "SelectCommand" Im not sure what im doing wrong. public int GetTotalNumberOfAprovedPictureIds(string SexType) { ...
0
votes
3answers
68 views

Order of executions or ExecuteScalar issue

First im inserting a new member into the members table. Then im querying the table to get back the Member id. I get the data into the table, but it does not apear there quick enough to do the query in ...
0
votes
2answers
58 views

ExecuteScalar compilation error

I'm getting an error on ExecuteScalar(). It says I must declare the scalar variable @PicID. How could I declare a scalar varaible? Or am I doing this entire function incorrectly? public int ...
0
votes
1answer
90 views

vb.net - Object reference not set to an instance of object

I got this error when trying to use parameters to my sql statement, but it works fine when not use it. My codes are below: Dim i As String Dim sql as String sql = "SELECT * FROM tblStaff WHERE ...
0
votes
1answer
131 views

Using ExecuteScalar() results in a call to ExecuteReader() with a “default” CommandBehaviour?

Stack trace shows that ExecuteReader is the underlying method for ExecuteScalar.While digging for associated commandbehaviour, i found the post below - stating that the commandbehaviour.default is ...
0
votes
2answers
510 views

ExecuteScalar throws NullReferenceException when calling a stored proc that returns 1

I've done some research before posting this question and I'm aware of the fact that when there's no data returned, ExecuteScalar will throw a System.NullReferenceException. That is why I modified my ...
0
votes
1answer
273 views

How to prevent stored proc from returning intermediate recordsets?

Problem context : I use VisualStudio 2008 and typed datasets, which offer an "easy" access to executescalar() Execute scalar returns the value of the first field of the first row of the first recorset ...
0
votes
2answers
193 views

How can I use ExecuteScalar in this scenario?

I have this SQL Select statement to select the basket id where the user id equals a specific ID. I want to store the result of the query in a variable, so I thought I could have done: ...
0
votes
3answers
347 views

ADO.NET: Does ExecuteScalar close the connection automatically?

Does ExecuteScalar close the connection automatically?
0
votes
1answer
42 views

ExecuteScalar with formview

i have form view i wrote this code in event sqlds_inserted text1.text=e.Command.ExecuteScalar().ToString(); to have the id for the last inserted record it works but every time i add record it ...
0
votes
3answers
262 views

F# and ExecuteScalar casting

How can I use DbCommand.ExecuteScalar from F#? It returns an obj which I need to convert to an int. I'm very new to F# and the casting I need to do is not clear. let (stockid:uint32) = ...
0
votes
2answers
1k views

Run multiple commands in one ExecuteScalar in Oracle

I have a batch of sql statements such as ... insert into.... ; insert into.... ; delete .........; etc When i try to execute them against oracle it gives me this error (ORA-00911 Invalid Character) ...