Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
3answers
388 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 ...
3
votes
3answers
146 views

Using custom logger class to log errors and events slows down the process

I have a very basic Logger class: public class Logger { public static void Log(string message) { mySqlClassInDAL.ExecuteNonQuery(string.Format("Insert into LogTable (msg) values ...
3
votes
4answers
663 views

OracleCommand command, ExecuteNonQuery issue

I have to clear certain tables in the oracle database however when I'm having issues with running the following code public static void ClearDataTables(IList<string> tableNames) { ...
2
votes
1answer
498 views

Jet Database (ms access) ExecuteNonQuery - Can I make it faster?

I have this generic routine that I wrote that takes a list of sql strings and executes them against the database. Is there any way I can make this work faster? Typically it'll see maybe 200 inserts or ...
1
vote
0answers
73 views

Can't insert into database by using ExecuteNonQuery() and stored procedure

Language: C# Skill: Beginner Tool: Visual Studio 2010 Hello StackOverflow, I have made a stored procedure for inserting data into a table... Stored proc works fine when I execute it in Server ...
1
vote
1answer
140 views

Returning scope identity using sqlCommand.ExecuteNonQuery()

I have a stored procedure that looks like so. ALTER PROCEDURE dbo.addPackage( @PackageStatus VARCHAR(50) = null, @OrgCode VARCHAR(50) = null, ...
1
vote
1answer
76 views

ExecuteNonQuery() returns -1 always

I am using stored procedure to insert some value in table. CREATE PROCEDURE [dbo].[Sp_InsertValue] @Val1 as nvarchar(50) @Val2 as nvarchar(50) as BEGIN IF NOT EXISTS(SELECT * FROM @mytable WHERE ...
1
vote
5answers
302 views

c# ExecuteNonQuery always returns Zero

I think nothing's wrong with the connection because when I open it, it does not throw any error. So I guess the error is when I'm executing a command. This is my code: OleDbCommand cmd = new ...
1
vote
3answers
907 views

VB.NET SQL Server Insert - ExecuteNonQuery: Connection property has not been initialized

In the form load event, I connect to the SQL Server database: Private Sub AddBook_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load myConnection = New ...
1
vote
4answers
2k views

Executenonquery return value

I want to perform a search on a table to see if record exists. I do not want to perform insert or update after. I have done this already but somehow I cannot get this to work. On my asp.net page I ...
1
vote
2answers
2k views

How to pass variable into SqlCommand statement and insert into database table

I'm writing a small program in C# that uses SQL to store values into a database at runtime based on input by the user. The only problem is I can't figure out the correct Sql syntax to pass variables ...
1
vote
1answer
621 views

Problem with cmd.ExecuteNonQuery()

I am inserting values in to Database from a Webform using ADO.NET, C#. DB I am using is Oracle Database. Values are not being inserted and the program gets struck at the cmd.ExecuteNonquery() Here ...
1
vote
2answers
455 views

my output parameters are always null when i use BeginExecuteNonQuery

I have a stored procedure that returns a varchar(160) as an output parameter of a stored procedure. Everything works fine when i use ExecuteNonQuery, i always get back the expected value. However, ...
0
votes
1answer
80 views

error :ExecuteNonQuery: CommandText property has not been initialized

this code is in the button click , i get each data out using spilt but i encounter error at "cmd.CommandType = CommandType.Text" Dim conn As New SqlConnection(GetConnectionString()) Dim ...
0
votes
3answers
80 views

c#: ExecuteNonQuery() returns -1

Ive used this method before to return the amount of rows changed. I am it to run an insert method, the insert runs fine in the stored procedure, but the return value from the ExecuteNonQuery always ...
0
votes
2answers
122 views

MySqlCommand.ExecuteNonQuery fails

I am trying to execute an INSERT query in a mysql DB, but it doesn't happen anything except that the code executions stops and nothing gets inserted. Here is the code (the connection is made at ...
0
votes
2answers
53 views

SqlConnection Problems in asp.net

i have created a 3tier application.. where i want to call the update method which connect the database and update the records accordingly. below is my database access layer. public class DataLogic { ...
0
votes
1answer
176 views

ExecuteNonQuery returning a value of 2 when only 1 record was updated

Running thru examples of Enterprise Library 5.0 and when I use ExecuteNonQuery to run an update sproc, it returns 2. The update is based on ProductID, the table's Primary Key (yes, I checked, and it ...
0
votes
0answers
102 views

Select Command into Postgresql database with c#

im trying to execute a select command in c# (visual studio 2010) and it wont succeed but i know that it should because of the data given. the code looks... NpgsqlCommand selectCommand = new ...
0
votes
3answers
96 views

speed up UPDATE operation

Please help me speed up UPDATE operation on the table. Table has on unique id, which used to find record and UPDATE its fields. There are 1M records in the table. No index used. Only unique id. ...
0
votes
4answers
278 views

SQLServer INSERT getdate() function using parameters

What is the preferred method of adding the current date/time into an SQL Server table with INSERT Command and executenonquery? I'm expecting something like ... cmd.Parameters.Add("@theDate", ...
0
votes
0answers
191 views

ExecuteNonQuery is hanging. Any Ideas?

I can't seem to figure out why or how to fix this issue. It just hangs on the ExecuteNonQuery. Any help would be greatly appreciated. Public Overridable Function updateDB(ByVal strSQL As String, ...
0
votes
2answers
749 views

VB.net updating Oracle record ExecuteNonQuery problem

Hey all when i use TOAD to update a table all works just fine when using this query: Update CSR.CSR_EAI_SOURCE ces Set (STATUS_CODE, COMPLETE_DATE, DATA) = (SELECT 'ERROR', '', ...
0
votes
2answers
454 views

(OleDb) ExecuteNonQuery error - Type name is invalid

I pretty new in writing asp.net codes and I can't solve a problem. Every time I try to register I get the following error: Type name is invalid. Description: An unhandled exception occurred during ...
0
votes
1answer
273 views

MSDataSetGenerator using ExecuteScalar() instead of ExecuteNonQuery()

I'm using a strongly-typed dataset (MSDataSetGenerator run on an XSD) to do some of the DB access in a project I'm working on, and I've hit upon a bit of a problem. As I'm using Identity columns as ...
0
votes
1answer
433 views

MySQL row_count() rows affected

There is very little documentation on MySQL's row_count() function. Is this function specific to each stored procedure (i.e. will multiple instances of the same stored procedure executing at the same ...
0
votes
1answer
231 views

Using SMO to call Database.ExecuteNonQuery() concurrently?

I have been banging my head against the wall trying to figure out how I can run update scripts concurrently against multiple databases in a single SQL Server instance using SMO. Our environments have ...
0
votes
1answer
302 views

What will ExecuteNonQuery return when dropping a table?

Suppose we execute a DROP TABLE X through an ExecuteNonQuery and everything runs fine (without exception), what will it return?
0
votes
3answers
652 views

ExecuteNonQuery() ERROR -> The conversion of the nvarchar value '3955811801' overflowed an int column

would u plz help me to figure out this problem ... my code behind is like this : using (SqlConnection _conn = new ...
0
votes
2answers
178 views

SqlException.Message duplicated when calling sqlserver stored proc

I have a stored procedure that gives a friendly enough error that I want to show to the users but when I call it from .net it comes out twice. When I call the proc from sql server management studio it ...
0
votes
2answers
342 views

Correct this SQL Query: error “Microsoft Jet database engine cannot find the input table or query 'IF' ”

i should say hi experts :D . Help me with this pretty code :) The database: "ID (Primary key)" | "Title" 0 | "title1" 1 | "title2" 2 | "title3" 3 ...
0
votes
2answers
617 views

ADO.NET and ExecuteNonQuery: how to use DDL

I execute SQL scripts to change the database schema. It looks something like this: using (var command = connection.CreateCommand()) { command.CommandText = script; command.ExecuteNonQuery(); ...
0
votes
2answers
55 views

error on ExecuteNoQuery()

i'am trying to update a row in a table using : command.ExecuteNoQuery() it's not giving me an error but it's not updating the row This is my code : Dim req As String = "Update Table Set Id= 5" ...
-1
votes
1answer
69 views

MySqlCommand.ExecuteNonQuery error and strange c#

I try to insert pathname to mysql database, but its working but its strange. What I found is the path isnt the path of my project directory its something strange. when i use my program the result is ...