Provides a way of reading a forward-only stream of rows from a SQL Server database.
I have a SQL Server 2008 database and I am working on it in the backend. I am working on asp.…
c# asp.net sql-server-2008 sqldatareaderI'm using a SQLdatareader to build POCOs from a database. The code works except when it encounters a null value …
c# sqldatareaderMy question is how to get the number of rows returned by a query using SqlDataReader in C#. I've seen …
c# sqldatareaderAfter connecting to the database, can I get the name of all the columns that were returned in my SqlDataReader?
c# ado.net sqldatareaderI have a datareader that return a lsit of records from a sql server database. I have a field in …
c# null sqldatareaderHow do I check to see if a column exists in a SqlDataReader object? In my data access layer, I …
c# .net sqldatareaderI am trying to get the number of rows that were returned by iterating the reader. But I always get 1 …
c# sql sqldatareaderUsing ASP.NET MVC with C#, how do you pass some database records to a View and display them in …
c# asp.net-mvc sqldatareader sqlclientI was trying to add data from a database to acombobox. try { SqlCeCommand com = new SqlCeCommand("select * from Category_Master", …
c# sqldatareaderI am trying to figure out how to check if my SqlDataReader is null or has no rows (meaning the …
c# sqldatareader