The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
28 views

Could not find type DbCommandDefinition in System.Data.Common and in System.Data.Entity.Core.Common

someone who can help me with this error: [InvalidOperationException: Could not find type DbCommandDefinition in System.Data.Common and in System.Data.Entity.Core.Common] ...
0
votes
1answer
97 views

Easier way to send parameterised query to database?

Is there a way to write the following code in less lines? It seems like a lot of code to execute such a simple query. No LINQ as I am using VS2005. Answers in either VB or C# are acceptable. Using ...
0
votes
1answer
142 views

Handle optional parameters when I call a stored procedure

Problem statement. Basically I get 3 - 50 parameters that come back from a web service as a NVP array I then need to loop over them create the SQL command parameters for each and call the stored ...
0
votes
0answers
73 views

difference in columns returned from database

connection = sqlserver Connection string var userColumns = connection.GetSchema("Columns"); And other approach: DbCommand command = factory.CreateCommand(); command.Connection = ...
-2
votes
2answers
845 views

How to generate List<String> from SQL query?

If I have a DbCommand defined to execute something like: SELECT Column1 FROM Table1 What is the best way to generate a List<String> of the returned records? No Linq etc. as I am using ...
0
votes
1answer
411 views

Update/Delete/Insert DataGridView

I've created an DbDataAdapter from a DbConnection, filled a DataTable, and put it into a DataGridView. When I addapt/insert/delete data in the DataGridView, I want to save it and update the database. ...
3
votes
4answers
1k views

Inserting NULL to SQL DB from C# DbCommand

DbParameter param = comm.CreateParameter(); param = comm.CreateParameter(); param.ParameterName = "@StaffId"; if (!string.IsNullOrEmpty(activity.StaffId)) ...
2
votes
1answer
260 views

DbCommand with Linq?

I'm using DbCommand from : System.ComponentModel.Component I'm building an object with params : DbCommand command = _webERPDB.GetStoredProcCommand("mySp"); _webERPDB.AddInParameter(command, "@a", ...
2
votes
2answers
969 views

How to Convert a Nullable DateTime variable's null value to DbNull.Value

I have a nullable DateTime Variable. And I want to write it to SQL DB. When i try to insert: If the variable has value there is no problem. But if it hasn't a value, insertion interrupting with an ...
1
vote
3answers
440 views

Is order of parameters for database Command object really important?

I was debugging a database operation code and I found that proper UPDATE was never happening though the code never failed as such. This is the code: condb.Open(); OleDbCommand dbcom ...
2
votes
2answers
601 views

DbCommand can't run multiple SQL command in one ExecuteNonQuery()

Hello I have the following problem and I can't solve it. With DbCommand I'm trying execute this SQL statement Dim strCommnad As String = "CREATE DEFAULT [dbo].[DOMAIN_XLibPKID_D] AS (0);" + ...
3
votes
2answers
3k views

SQL0666 - SQL query exceeds specified time limit or storage limit

Periodically, I get this error message while making a call to a DB2 database using the Odbc connection string. I have tried setting the CommandTimeout of the DbCommand object to multiple values, but I ...
2
votes
3answers
2k views

Copy parameters from DbCommand to another DbCommand

How do you copy DbCommand parameters to another DbCommand, I want a new DbCommand with the same parameters as my last DbCommand. But now with a different sql string.
3
votes
2answers
665 views

ASP.NET: How to support two database types in one application? (Access, MS SQL Server 2008 Express)

The ASP.NET web application I am developing needs to support two different types of databases, namely Access and MS SQL Server 2008 Express. I already have connection strings for each database type ...
0
votes
1answer
1k views

AddInParameter and NULL?

I have problems inserting a null paramater with the AddInParameter method. cmd.AddInParameter(someString, someValueWhichCanBeNULL) As soon as the 2nd param is null, it fails. I also Tried ...
9
votes
3answers
630 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 ...