Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
1answer
1k views

eclipse with Intel Fortran debugger

My problem is the following: I want to use the idb intel debugger with eclipse to be able to go step by step through my code, much like idb -gui does. I already tried to implement a solution i found ...
1
vote
4answers
586 views

SQL Server Physical Memory Grow After Execution of Commands

I am running Server Application on Windows Server 2008 with SQL Server 2008, Now My scenario is as Given. I have implemented a custom Connection Pooling (why I did that its another long story). ...
1
vote
2answers
906 views

Is there a way to use a generic DbCommand to do an Asynchronous update?

When using a generic DbCommand to perform an update, it will hang indefinately if the row being updated is locked. The underlying connection used is is Devart's Oracle provider, ...
1
vote
4answers
806 views

How to obtain the IDbCommand output to the DB? (.NET)

I have a SqlCommand object, and I execute its ExecuteNonQuery method. The query fails, but I can't see how to obtain the query to debug it. Could you help me? Update I am currently using Wireshark ...
0
votes
1answer
68 views

How do I get and DataTable from IDataReader?

I'm trying to get a data table or data set from a IDataReader, but I'm failing. Here's the code. string sql = @"SELECT ID, DOCNUMBER FROM TBDOCUMENT"; using (IDbConnection conn = ...
0
votes
1answer
63 views

SQL: Update does not affect any row

I want to update a dataset in a DB2/AS400 table. The problem is if I there is string parameter in the parameters list the command does not find a row to update. For example: If I run the command ...
0
votes
2answers
178 views

IDbCommand - CommandType.StoredProcedure

I'm just curious if the IDbCommand.CommandType's value makes a difference in terms of performance? Basically, I could do either set it as CommandType.Text and pass in a SQL query "EXEC ...
0
votes
1answer
508 views

Select Statement in ASP.NET (VB) using Parameters - Error: Input string was not in a correct format

So I have some code in a VB module. When I run this with the SQL statement having hard coded values in the where statement it works. I am now trying to add Parameters to the module so that the Form ...