A set of computer software components that programmers can use to access data and data services.
0
votes
1answer
26 views
Loop through ado.net sql select to add more rows to datatable
I currently have a working query for the first element in the array of ID's as seen below. What I need to do is add a for loop so I rerun the query for every element in the array and add each new row ...
-3
votes
1answer
37 views
TimeOut Linq Alter Web Config
How do I alter the TimeOut of Linq in my WebConfig file?
Is possible?
In code-behind I can write:
db.CommandTimeout = 3600;
Can this be done based on a WebConfig entry?
1
vote
1answer
27 views
Exception thrown when adding a value to an Insert Parameter
I'm trying to create an Access Database and to add a table with some values. For some reasons the code below throws an exception when adding an integer into the Insert Parameter. Can someone spot what ...
0
votes
0answers
9 views
SqlDataReader does not update value for column
I have a stored procedure running on SQL Server 2008 that returns a list of all procedures and their parameters:
procedure [dbo].[p_ListProcedures]
as
select
sp.name as 'Procedure',
p.name as ...
0
votes
1answer
31 views
Create temp table with stored procedure on page load
I would like to create a temporary table on either of those events, depending on which would be the most prudent in a real-world application: the page load event, or the second time a button is ...
0
votes
0answers
31 views
create an exe with database init
I have created a simple CRUD application in windows forms and used sql express database.
the database tables is supposed to contain some data at the initial stage (at the time of installation).I want ...
-1
votes
2answers
22 views
System.InvalidOperationException: ExecuteReader: CommandText property has been not initialized
When close my programm, i have such error:
System.InvalidOperationException: ExecuteReader: CommandText property has been not initialized
Can someone help? Here my code:
try
{
...
0
votes
1answer
16 views
Unbale to preview the Report in Visual studio SSRS
I have created the custom data source Provider. I have edited the config file RSReportDesigner.config and RSPreviewPolicy.config. I am able to see my custom data source provider in data source list ...
1
vote
3answers
90 views
Reading SQL queries from .txt file for C#
Before, I ask my question, I want you to know that I'm quite new to winforms in C#. :) So, I'm trying to create a winform using C# and in order to get the data from the back end, I'm storing all the ...
0
votes
1answer
16 views
SqlLite 3 - “Unable to open database”
I have created a SqlLite 3 db file and placed in my project's App_Data folder (ASP.Net Web API). I can't seem to connect to it. The exception message is vague and I cannot determine what is wrong. ...
2
votes
3answers
27 views
C# ADO.NET - return sum of one columns in table
In my table in databse I have a column called "Cena" with the type of Integer. I need to SUM these columns to count the whole "Cena" of the table.
To do it I'm using SqlCommand and the method ...
0
votes
1answer
40 views
SqlDataReader.Read Not Working As Advertised?
So I'm running a query in ADO.NET that I know returns a single row. The relevant portion of my code looks like:
SqlCommand sqc = new SqlCommand();
sqc.Connection = new SqlConnection("connection ...
0
votes
1answer
25 views
where clause in entityDataSource with field from other table entity
I've got 3 tables, products, productspercategory and category.
You can choose a category, after which you get all products from that category listed.
But I cannot seem to get this to work.
I am ...
0
votes
2answers
33 views
ado.net can't read from my database
This is a really noob-problem but im tearing my hair soon.
I'm trying to read from my local database but it gives me nothing.
Here is the code:
protected void readBtn2_Click(object sender, EventArgs ...
0
votes
1answer
36 views
How to register custom data provider in C#
We have Middle tier that provide data. We are trying to write a custom data provider. I have overriden the intefaces of SYstem.Data namespace like IDbCommand, IdbConnection and generated dlls.
We ...
-1
votes
0answers
23 views
ADO.NET: Not fetching all rows when excel has filter applied [closed]
I have a requirement where I am reading excel file using ADO.NET.
Problem is that when my excel file has filter present, records are not being fetched completely. Say if my excel has filter present ...
0
votes
1answer
35 views
SqlDatareader Has Rows with Multiple Result Sets
I have a result sets in which there are 3 results. The first result set has no rows and next result sets has rows. How to check if each result sets has rows?
When i tried this it is saying false
...
0
votes
1answer
69 views
Binding recursive treeView
I'm developping a Windows Form application on Visual Sudio and this is the my first time with treeView. My project has a ADO .NET entity data model of and SQL database, I have 3 tables with relations:
...
0
votes
0answers
11 views
What is the correct version of ASE Sybase driver to use for a 32-bit application running on 64-bit Windows
What is the correct version of Sybase .net driver to use from a 32-bit application running on 64-bit Windows OS? Should I be installing the Sybase PC-Client 32-bit version (because my application is ...
1
vote
2answers
47 views
Why doesn't this INSERT command work?
My system does not come with any errors, but there is not added anything to tblHardware when I try to add.
This is my code.
private void btnTilfoj_Click(object sender, EventArgs e)
{
conn = new ...
0
votes
1answer
28 views
ADO.NET DbContext Generator template missing
My ADO.NET DbContext Generator is missing in VS 2012. Only the EF 5.x DbContext Generator appears there.
Do I need to install EF 4.1 to get ADO.NET DbContext Generator?
1
vote
4answers
57 views
Correct/Ideal way to manage SQL Connections and Transactions - C#
I have a C# application that makes many SQL calls across multiple functions and classes. The database is SQL Server 2008 R2. Currently each class or function will open it's own SQL connection whenever ...
0
votes
2answers
58 views
Can I use T-SQL try-catch in ADO.NET
In ADO.NET we have methods for starting a transaction, reading the query results, etc.
My question is, will such T-sql statements as BEGIN TRANSACTION and particularly TRY-CATCH work if I just include ...
1
vote
1answer
34 views
Join 3 tables in listview ado.net webapplication entity framework
I am new to both ado.net and the entity framework. I am working on a web application with a login, and an administrator panel using ado.net, SQL server and the Entity Framework.
In the administrator ...
0
votes
4answers
43 views
selecting data where column='null'
I want to query data and the column (Continent) either has a value of 'Africa' or Null.
I want to use this column name in my query but for the countries where the name is not Africa I get no data.
...
0
votes
1answer
22 views
Remove column and remove blank space in report viewer
I need to remove some columns when generating a report. However, the columns are hidden, it leave a gap on the table.
My question is how can I remove this gap?
I using parameter to hide the whole ...
0
votes
1answer
35 views
populating a DataTable with ADO .NET entity model
I'm developping a windows form application with ADO .Net entity data model. I have DataTable dt = new DataTable, how can i populate this DataTable from the data base using dataBaseEtities?
Here is my ...
0
votes
0answers
11 views
Calculated field in datagridview from different tables
I made database model by ado.net entity framework, filled datagridviews with data from tables. but field Sum doesn't calculate correctly (it calculates only if column "id" starts from value "1"). ...
2
votes
3answers
78 views
NULL value checking
I am trying to run the following code but the error occurin says you have error near the @tid. The parameter is supposed to be taking NULL value.
public static DataTable ...
0
votes
1answer
44 views
Simple way to check how many rows I have in my database
I'm connected to a database through the SqlConnection class. Is there any simple why to check how many rows are in the database or do I have to create a SqlDataReader and increment till the last row ...
1
vote
4answers
52 views
SqlDataReader returns null
Please help!
I have a program that uses a stored procedure to retrieve data from the database and dumps the data in a table for display, this is how my code looks:
string connectionString = ...
1
vote
1answer
25 views
Declaring a connection string in console application
I am creating a console app and I have a connection string in the app.config file. When I try to reference this in my code I get an error on the configuration manager (ie its underlined).
Public ...
0
votes
1answer
44 views
Transform from array to data table
My requirement is that I want to transform a bunch of arrays into datatable. One array related on one datatable, and all the datatables are in a dataset. It seems the requirement is simple. But the ...
0
votes
1answer
31 views
Using Oracle DB in a C# WinForms application
I'm working on a project written in C# and using an Oracle database. In my researches, System.Data.OracleClient is deprecated and Microsoft recommends a third party Oracle provider. I decided to use ...
2
votes
2answers
40 views
Query Firebird database schema with FirebirdClient
How can I query database schema in C#/ADO.NET/FirebirdClient? All classes in namespace Firebird.Data.Schema are internal.
For example:
check if table has column with specified name
query number of ...
-2
votes
0answers
40 views
Getting the System.Data.OleDb.OleDbException error message but cant get rid of it
private void btninsert_Click(object sender, EventArgs e)
{
OleDbCommand command = new OleDbCommand(); //new instance of Oledb command object
con.Open(); //open database connection
...
0
votes
1answer
19 views
Why does Visual Studio not add stored procedures to data structure on update?
I've noticed recently that if I add a stored procedure to an existing ADO.NET entity data model through the GUI's "Update model from database..." that it does not generate the code to be able to ...
1
vote
3answers
95 views
How do I get values from an SQL database into textboxes in c#?
I'm creating a booking management system and am having problems trying to get data from an SQL database into a group of textboxes, I want to show a customer's details when a button is clicked in a ...
0
votes
0answers
28 views
Error while creating sql database in visual studio
I got error each time I add new item - data - service based database in my project on visual studio 2010
it said
"login failed for user /My Computer Name"
Here is the screenshot :
Do anyone ...
1
vote
2answers
39 views
CSharp ado.net Error converting data type nvarchar to numeric
suppose I have a table with 3 column
ID Int
Name nvarchar(63)
Age Int
and I have a procedure to search all row match with keyword input.
Create Procedure usp_Search
...
0
votes
0answers
14 views
how to have indexer object containing data of a database row without DataRow/DataReader in C#
I'm currently having 2 wrapper classes to contain DataReader and DataRow, respectively. The wrapper classes implement same interface IIndexer. They are used because I have lots of methods that just ...
1
vote
0answers
38 views
.net framework execution was aborted by escalation policy because of out of memory
I am using Net framework 4.0 and Sql Server 2012 for the development. There is an error occurring randomly while performing database operation in the web application in asp.net. I have call some sql ...
0
votes
0answers
13 views
ADO.NET Batch update
I have been browsing through the net for examples on UpdateBatchSize for update statement. Most of the examples require the use of parameter as follows:
adapter.UpdateCommand.Parameters.Add("@Name", ...
0
votes
0answers
48 views
Gridview in Content template of accordion
here is the aspx code of the accordion. This code is used to fill an accordion from database. There are three major information one is a simple row object which is added to the header template but ...
0
votes
1answer
34 views
Is there any performance impact of having transaction control implemented in ado.net code?
I am supposed to tune a .net application, where the developers have implemented transaction control in ado.net even for connections with single sql command.
Personally, I avoid ado.net transaction ...
0
votes
2answers
34 views
Failed to insert data into Acces DB
I try to insert some data in an Acces database using ADO.Net, it runs through all of my code without giving errors. But if I go look in my database, I see nothing is in the table.
Can someone please ...
0
votes
2answers
31 views
retrieve a second option of a table
I'm developping an application with C# and ADO.Net entity data model. I have a table Users in SQL Server database with 3 columns (idUser, nameUser, statusUser).
What is the code to retrieve the second ...
0
votes
1answer
71 views
refresh form after button click
I'm getting the first element of a table articles where column(statusArticle=false).The problem is that i want to refresh the form after the button click so i can interact with next element, but the ...
0
votes
2answers
29 views
Update line in database
I'm developping an application with c# and ADO .NET entity data model. I have a table Articles(idArticle, nameArticle, statusArticles). I want to retrieve the first article where statusArticle=false, ...
0
votes
1answer
20 views
Add Record to Table A and get PK Violation for Table B?
Here's code throwing exception (line 68):
protected void CreateTickStoreRecord(TickPriceEventArgs ev)
{
try
{
ctx.TickStores.AddObject(new TickStore()
{
...

