The executereader tag has no wiki summary.
0
votes
1answer
68 views
SELECT into Array
I use ExecuteReader().
It returns only the last result. I wanted to display the result like an array in tbid_1.Text, tbid_1.Text, tbid_1.Text etc.
public void Select(FrmVIRGO frm)
...
1
vote
5answers
88 views
How to read specific column and cell in mysql in c#?
I use ExecuteReader to select all (SELECT*) for all field like this
string query = "SELECT* FROM tb_patient_information ";
if (this.OpenConnection() == true)
{ //Create Command
...
0
votes
1answer
79 views
Errors for SQL Server connection in asp server
In an asp server we are getting error for SQL Server after executing ExecuteScalar, ExecuteReader and ExecuteNonQuery like shown below. The error will only come sometimes, it's not seen always. So ...
1
vote
1answer
82 views
SqlCommand.ExecuteReader duration less than SQL Profiler batch duration
How a call to SqlCommand.ExecuteReader take less time to complete than the SQL batch itself as seen in SQL Profiler?
I have the following simple code running in a console app which calls ...
1
vote
0answers
77 views
cmd.ExecuteReader() with SQLite is slow but fast in SQLite Manager
I planned to use SQLite as local database.
I created a complex Select statement with "group by" and "order by" in SQLite Manager (Firefox AddIn).
The query run in about 600 ms in SQLite Manager.
In ...
2
votes
2answers
386 views
Only get single value from list executereader
I am trying to read values form my database. But why am I getting only values with no column name?
this is my controller. that returns the values in JSON
SqlCommand cmd = ...
0
votes
1answer
47 views
Storing ID from SQL result
Im running the following code to tell if a user excists on a database - standard stuff. Obviously once the code is run a boolean true or false will be returned if there is a result. If a result is ...
0
votes
2answers
2k views
VB.NET ExecuteReader CommandText property has not been properly initialized
First of all sorry if some of the code isn't right. I'm still new to using sql on vb.net
I have the following code:
Imports MySql.Data.MySqlClient
Imports System.Data.SqlClient
Public Class Form1
...
0
votes
4answers
284 views
SqDataReader closed issue in .net
i have created a function which executes query and returns SqlDataReader, now i am using that in another function work with the returned data, but i gets the error saying reader is already closed. ...
0
votes
3answers
2k views
Why is ExecuteReader only giving me 1 row of data back?
I have this code and its only returning the first string [0] and errors on the rest of them saying the index is out of the array which means only 1 row is getting pulled BUT I DON'T KNOW WHY!!!
...
1
vote
2answers
224 views
unexpected error when trying to execute stored procedure
I get the following exception when i try to execute specific stored procedure :
Input string was in incorrect format
my .cs :
sQuery.Append("EXECUTE procedure get_department(" + dep_code + ...
1
vote
3answers
2k views
ExecuteReader is returning only 1 value
I am using an ExecuteReader to return the values of QuestionText when QuestionnaireID matches my query. (See Database Design)
However my problem is that when I run the project my ExecuteReader only ...
0
votes
3answers
1k views
asp.net c# ExecuteReader() error
The following code produces an error.
dbo.getit works fine when I call it directly on the server. The error occurs at cmd.ExecuteReader() . What am I doing wrong?
string user;
string pw;
...
0
votes
2answers
697 views
How to populate VB.NET multidimensional dropdownlist?
I am trying to initialize a dropdownlist in VB.NET but my dropdownlist is not populating any values. I want the DataTextField to be different from DataValues in the dropdownlist. Dropdownlist should ...
0
votes
1answer
1k views
How to write VB.NET multidimensional arraylist?
I am developing a VB.NET ASPX file which is currently working. But now it errors cause I added this one new input parameter which is a dropdownlist. The dropdownlist works properly now. Its source ...
1
vote
1answer
3k views
How to populate arraylist with SQL query?
I am developing a VB.NET ASPX file. This report is currently working but now I want to add a parameter which should be an array list displaying all records from below SQL query:
" select distinct ...
2
votes
1answer
435 views
Combining SQL `raiserror` with `select` in C#
I want to know if there is a way of using both SQL raiserror and retrieving the selected result in C#. ExecuteReader() in C# will throw an exception when raiserror occurs, but I still want to use the ...
0
votes
2answers
82 views
vb.net - problem in loging in
I use the following code in my login form. but it doesn't care about cases. Just like admin or Admin or whether ADmin as username can either login to my system when the real one is admin. these are my ...
1
vote
1answer
922 views
Need an example on how to use the ExecuteReader with a ParamArray
Can somebody please provide an example of how to use the ExecuteReader calling a stored procedure with a parameter array?
0
votes
4answers
2k views
ExecuteReader requires open Connection. Current state: Broken
I'm using StructureMap to inject a LINQ data context (DB class) into my repositories for read queries on a HTTP-context basis, which are queried via a service layer. Everything works fine for a few ...
0
votes
1answer
358 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 ...
1
vote
1answer
774 views
not getting stored procedure output variable through ExecuteReader
here my code-
using (SqlDataReader sqlDataReader = ExecuteReader(CommandType.StoredProcedure, StoredProcedures.AuthenticateUser, sqlParameter))
{
isAuthenticated = ...
0
votes
2answers
1k views
Is it possible to use ExecuteReader() twice?
I'm programming a database manager for a gameserver called OTServer, and I'm having problems using executereader() the second time. Here's code:
private void button1_Click(object sender, ...
0
votes
1answer
319 views
Ado.Net ExecuteReader with a read-only SQL Server user
At the Application_Start of my web site I execute a stored procedure to read some data from one SQL Server 2008 database.
This is the only call to this database.
I would create a specific SQL Server ...
1
vote
1answer
191 views
packet of queries - MySQL
is there a way to send packet of queries in 1 query to mysql using c# ?
i mean i got 13 selects, they are not related, so cant union them, they get diffrent type of data. Now i got dbconn, 13x select, ...
0
votes
1answer
5k views
Invalid attempt to call FieldCount when reader is closed
The error above occurs when I try to do a dataReader.Read on the data recieved from the database. I know there are two rows in there so it isnt because no data actually exists.
Could it be the ...
0
votes
2answers
3k views
ExecuteReader with Oracle array binding
I'm trying to improve performance of my Oracle SQL queries by using array binding to an OracleParameter.
This is basically what I'm trying to do:
List<string> IDValList = new ...
0
votes
2answers
184 views
List tables involved in a sql statement before it is run?
Is it possible, in .NET, to pass a sql statement to SQL server for parsing and return the tables involved in the statement and the type of operation. So for a statement like this :
select * from ...
0
votes
1answer
369 views
executereader never return
i am using mysql via devart dotconnect. above code is part of the multithreaded class.
public void DoQuery(ref Devart.Data.MySql.MySqlDataReader Dr, string QryStr)
{
lock ...
0
votes
2answers
489 views
SubSonic InlineQuery returning wrong results with ExecuteAsCollection
Using SubSonic 2.2, I have this query:
string q = @"SELECT Media.Id, Media.Title FROM Media WHERE Media.UserId = 7"
DAL.MediumCollection matches = new ...
1
vote
2answers
2k views
LinqToSQL and the exception “ ExecuteReader requires an open and available Connection.”
I have a collection called dbUsers of type IQueryable
These are pulled from a linqtosql database context i.e.
IQueryable<Data.LinqToSQL.User> dbUsers = DBContext.Users
Calling ToList on this ...