A set of computer software components that programmers can use to access data and data services.
0
votes
3answers
17 views
Generic way to insert some data into a table
I have always been using nhibernate ORM for inserting data to sql tables from application.
But recently I tried reading on Ado.net and found suggestion to use stored proc instead of
...
1
vote
1answer
34 views
Export Datatable to xml in vb.net
I have some DataTables that I want to export to a xml file. I can use DataTable.WriteXml() to output the contents of the DataTables to XML. I need to use a Response object as shown. I need to add ...
0
votes
0answers
32 views
SqlConnection and nested transactions
There's (still) no way to create nested transactions via ADO.NET / SQL Server 2012, correct? This ...
using (var sqlConnection = new SqlConnection(connStr))
{
sqlConnection.Open();
var ...
0
votes
0answers
32 views
How to assign a value from a DataRow
I have the following code that takes a DataSet and a currenYear as arguments. The code is supposed to look into the GrowthTarget DataTable, select a rows that meets the criteria in the Select ...
-2
votes
2answers
32 views
how to set a parameter error in procedure or function in asp.net
so here I'm creating a web app which using sql server database connection, here i have a stored procedure:
ALTER PROC [dbo].[spMSTransaction_Insert]
@OrgID int,
@SiteID int,
...
0
votes
0answers
46 views
what is wrong with this C# duplicate row code?
I'm trying to duplicate a record in my database and I used this code you see below, the sql query worked perfectly in sql server but here I don't know what the problem...help me please
//Insert new ...
-1
votes
1answer
27 views
exception raised during foreach loop on DataRow, DataRowView, DataViewon [duplicate]
i am using following code to generate ordered list. this code create exception on line number 73, 106, 108 when this page is refreshed during load testing.
menu gets created in development and testing ...
0
votes
1answer
38 views
Save From Gridview using a WCF
so I am using Gridview with a WCF. I have managed to insert from textboxes to gridiview but now I am struggling to save the gridview via the WCF service. I have giving it an attempt and getting this ...
1
vote
1answer
27 views
Data Table Sum Issue
I have a situation.
I have datatable that contains the Credit and Debit columns like this
Month Credit Debit
Sep 1422825 0
Oct 0 1422825
Oct 1695017.5 0
...
1
vote
0answers
16 views
Unit Of Work side effects could be fixed with TransactionScope, but it is not available with MySql.Data
I'm using NHibernate with MySql.Data ADO connector.
I have Dao classes with CRUD methods: Create, Update, Delete.
These methods open their own NHibernate transactions and commit them.
Now I am ...
4
votes
2answers
52 views
Excel download process die the page in case of large dataset in ASP.NET
I have developed an application where i am getting data from database ,binding it to an Infragistics grid and then downloading excel using its export utility.
There is a problem with this approach ...
-1
votes
1answer
50 views
I cannot update an Access 2007 table using C# statements
I'm trying to add records to a MS Access table 2007 using a C# application. My table consists of 3 fields: ID, Name and phone.
For example I tried to add a record for some one with these data: ID=1, ...
0
votes
2answers
62 views
SqlCommandBuilder cannot handle SQLDataAdapter with Multiple SQL-Statement
I'm working on a simple userclient (frontend) for a MS SQL Server database.
The database itself is pretty straight forward, there are eight tables without any foreign keys.
So far I managed to ...
1
vote
1answer
21 views
Update Oracle database and SQL Server 2008 R2 database within a transaction
I need to perform update in a table in Oracle as well as update a table in a SQL Server 2008 R2 database.
Is it possible to run them in a transaction using ADO.Net?
0
votes
0answers
27 views
ListView with 2 tables
Sample Output:
1st column(ProductID) 2nd(ProductName) 3rd(OrderDate) and 4th column in Unpaid(Amount)
It is possible to have 2 tables in a ListView?
How to do this sample output, which gets the ...
1
vote
2answers
53 views
Updating database for specific user
I'm trying to updata my sql database for a specific name, and the following code is not working. Any ideas why?
Here is what I am doing on the button click:
string person = ...
-1
votes
1answer
53 views
The SelectCommand property has not been initialized before calling “Fill”
my code is...
SqlConnection cn = new SqlConnection("Data Source=.\SQLEXPRESS;AttachDbFilename=C:\Users\MANTHAN\Documents\Visual Studio 2010\WebSites\sample\App_Data\Database.mdf;Integrated ...
0
votes
0answers
44 views
Entity Framework generated Context uses wrong connection string
I added an ADO.NET Entity Data Model to my project, which created a connection string in app.config looking like this:
<add name="KeyTranslatorEntities" ...
0
votes
0answers
12 views
System.NullReferenceException at Sybase.Data.AseClient.AseConnectionImpl.Finalize()
We are using ADO.NET client of Adaptive Server Enterprise version 15.7 Developer's Edition (ASE 15.7) in our .NET WCF service to connect Sybase database and write integration data.
All code using ASE ...
0
votes
1answer
17 views
Access 2007 - INSERT and instant SELECT doesn't retrieve the inserted data
I'm inserting a few rows in a table via OleDB, and select instantly the inserted row.
I can't retrieve the row in this way, i have to wait for approx. 3-5 seconds. And then the inserted row appears ...
-1
votes
0answers
30 views
Difference between SqlCommand and CommandBuilder [closed]
I want to know the difference between SqlCommand and CommandBuilder.
And which is the best for using and why?
1
vote
3answers
55 views
Null Reference Exception in SQL Query output
After struggling with pulling certain info from a SQL Database to use in C# code to do some permission checking, I have decided to go back to basics and learn how to do it properly and slowly build on ...
2
votes
2answers
38 views
Clarifying SQL and ADO.net Literal Parameter specifications
So I am reading a book on ADO, and I have reached the end of the chapter describing parameters and queries in ADO. In the book it provides the following code examples to pass a parameter to SQL ...
1
vote
2answers
37 views
Unable to add new entry in datatable c#
i'm trying to add a new row to my datatable.
I've no error while running this code but nothing happened in my table.
Here's my code :
string table = "`DONNEE ENTRANT`";
...
-1
votes
2answers
68 views
How to connect access database in c# [closed]
I have access database file with 7 tables in it but I don't know how to connect and show all tables, If some one can help me?
this is my code but it doesn't show anything
private void ...
0
votes
1answer
20 views
EntityCommandExecutionException was unhandled see innerException for Details
I am trying to connect my C# application with SQL server compact edition using ADO.NET entity Model.
I think I have been successfully able to generate the model against the database schema.
However ...
-3
votes
0answers
40 views
What is the main difference between ADO.NET and ADO.NET Framework? [closed]
I am new this ADO.NET and i want to know the differences between ADO.NET and ADO.NET Framework. which is mostly used and advantages/disadvantages?
Thanks in advance
6
votes
1answer
69 views
Is Data Reader better or Data Set for application where we may have Concurrency issue
I know the difference between Data Reader and Data Set.
The DataReader is a better choice for applications that require optimized read-only, fast and forward-only data access.
The Data set is better ...
2
votes
2answers
51 views
Where to store Connection String
I am creating a Class Library which contains all the custom classes I regularly use in the applications I develop. This library is compiled and added as a Reference in each of my applications, ...
0
votes
1answer
28 views
Change Display of Column Name in DetailsView
I'm creating a page where a user can edit their user information. I'm using a DetailsView control in ASP to display the data. How do I change the names of the field e.g. "FirstName" display as "First ...
1
vote
1answer
39 views
Odbc connection string results in login failed
Hi I have been trying all day to connect to my local sql-server database using ODBC but I seem to be missing something because every time I am trying to conenct I get this error:
ERROR [42000] ...
0
votes
0answers
24 views
Opening OdbcConnection results in an error
Hi I am trying to create a connect to an SQL-Server database using Odbc and I seem to be having some problems when oppening the connection I get this error:
ERROR [08001] [Microsoft][ODBC SQL Server ...
0
votes
3answers
42 views
`WHERE ⦠IN @xs`, where @xs parameter is a value list: Supported by ADO.NET?
I am trying to create a parameterised ADO.NET query with a WHERE ⦠IN @xs clause, where @xs is a short list of possibly non-contiguous values, for instance (2, 3, 5, 8, 13). Can this be done? If so, ...
-1
votes
0answers
12 views
ADO.NET Sybase System.Data.OleDb.OleDbException:Invalid object name 'spt_mda'
I'm sure the table named spt_mda is in master and ado.net successfully connected to sybase
[img=http://img.bbs.csdn.net/upload/201306/08/1370675896_820319.jpg][/img]
C# Codeļ¼
//function
...
1
vote
1answer
36 views
WCF client application crashes when accessing service
I have created a wcf web service with access to ADO.net Entity Framework. Hosts on IIS and have console client. Everything works fine.. on my computer. When I send .exe file to another its just ...
0
votes
2answers
23 views
Align data in listBox
I load the database in listbox by this code:
using (SqlConnection myDatabaseConnection = new SqlConnection(myConnectionString.ConnectionString))
{
myDatabaseConnection.Open();
...
0
votes
1answer
13 views
Not all paths return a value error in Model class
My model class looks like this:
using System;
using System.Collections.Generic;
using System.Configuration;
using System.Data;
using System.Data.SqlClient;
using System.Drawing;
using ...
4
votes
7answers
66 views
SqlConnection SqlCommand SqlDataReader IDisposable
SqlConnection, SqlCommand and SqlDataReader all implement the IDisposable interface. I read about a best practice to always wrap IDisposables into a using block.
So, my common scenario for querying ...
-1
votes
0answers
35 views
Error when accessing SQL Server DB
I have created a WCF web service that hosts on IIS and have an access to SQL Server database. Service working good but those methods that returns custom class objects throwing error in client ...
-1
votes
0answers
49 views
is entity framework obsolete? [closed]
Few days ago I bought Julie Lerman's book Programming Entity Framework, after reading some pages a question came to my mind, is Entity Framework (EF) obsolete? Then I did my job searching on Google ...
2
votes
2answers
33 views
Updating query with comparison between string and varchar(max)
i have an updating query like this:
public void Update_Download(string _url){
Data.Connect();
using (Data.connexion)
{
string queryString = ...
-2
votes
0answers
9 views
Is it Possible to Specify the value of the Key defined with AUTOINCREMENT When Insert a New Row in SQLIte?
for examply, I define a table as below:
CREATE TABLE Family (Id INTEGER PRIMARY KEY AUTOINCREMENT, Name nText NOT NULL)
Then, does belwo sql work? (assume there is no row with the id of 3)
INSERT ...
0
votes
1answer
22 views
ADO.NET Insert Mysql, All data is null
I have created a winform application, and use ado.net to access mysql database. But I encountered a strange problem.
my data table create script:
create table using_user {
`id` int(11) NOT NULL ...
0
votes
2answers
49 views
“This row already belongs to this table”
I've read existing code in stackoverflow but I'm still lost as how do I fix this.
This row already belongs to this table.
Any suggestions always is appreciated.
It errors out on my command button save ...
0
votes
1answer
23 views
RequestEntityTooLarge with WCF OData client
I have a WCF Entity Service using the Microsoft.Data.OData services, hosted in IIS with a WinForms client.
I am querying the client from a WinForms desktop application and also doing updates and ...
0
votes
0answers
16 views
Does DBConnection/DBCommand use DTS?
I am getting the following error when trying to make a simple SQL call from one particular machine (VD5) to another machine (VD0):
"Communication with the underlying transaction manager has failed"
...
0
votes
2answers
41 views
Query times out when run from ADO.NET but runs fine in Query Analyer
On local development machine my query times out indefinitely when run via website (ASP.NET - ADO.NET)
Same query was running just yesterday fine. It runs fine when I execute it from local machine.
I ...
0
votes
0answers
35 views
Invalid column name difficulties
Can't get my code to work. I have all the same names and i still get the same error telling me that "AwardName" is invalid. Ill list my code and stack trace below. Any help with this problem would be ...
0
votes
1answer
39 views
Get the database ID (IDENTITY COLUMN) of newly created entity before context.SaveChanges()
Is it possible to reserve an IDENTITY value for a to-be-added row in the database using Entity Framework?
In my override of ObjectContext.SaveChanges, I want to do something like this:
public ...
0
votes
2answers
42 views
Occasionally Getting SqlException: Timeout expired
I have application running on my server. The problem with this application is that daily I am getting nearly 10-20, System.Data.SqlClient.SqlException Timeout expired. The timeout period elapsed prior ...











