Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
1answer
2k views

ReadOnlyException DataTable DataRow “Column X is read only.”

I've got a short piece of code that originally created an SqlDataAdapter object over and over. Trying to streamline my calls a little bit, I replaced the SqlDataAdapter with an SqlCommand and moved ...
4
votes
1answer
1k views

SqlDataAdapter Output Variable Question C#

I do not clearly understand how to format the SqlDataAdapter for output variables when working with C# Error Message: Index (zero based) must be greater than or equal to zero and less than the size ...
3
votes
2answers
61 views

Do I have to worry about inserts/updates/deletes/injection attacks when I use the following SqlDataAdapter?

Do I need to do anything in order to prevent inserts/updates/deletes/injection attacks when I'm using the following code? public static DataSet getReportDataSet(string sqlSelectStatement) { ...
2
votes
3answers
602 views

Data Adapter Vs Sql Command

Which one would be better in executing an insert statement for ms-sql database: Sql DataAdapter or SQL Command Object? Which of them would be better, while inserting only one row and while ...
2
votes
1answer
485 views

C# SqlDataAdapter.Fill giving error about data conversion when passed datatable parameter

I'm trying to fill a datatable using a SqlDataAdapter in C#. I'm not very familiar with the objects, and am basically working off a template of someone else's code to try to figure out how it works. ...
2
votes
2answers
644 views

How can I synchronise two datatables and update the target in the database?

I am trying to synchronise two tables between two databases. I thought that the best way to do this would be to use the DataTable.Merge method. This seems to pick up the changes, but nothing ever ...
2
votes
2answers
464 views

How bad is opening and closing a SQL connection for several times? What is the exact effect?

For example, I need to fill lots of DataTables with SQLDataAdapter's Fill() method: DataAdapter1.Fill(DataTable1); DataAdapter2.Fill(DataTable2); DataAdapter3.Fill(DataTable3); ...
2
votes
1answer
800 views

DataGridView, DataTable, SqlDataAdapter and SqlCommandBuilder - disable deletes

I have a WinForm that has a DataGridView table. It is bound to a DataTable in conjunction with a SqlDataAdapter and SqlCommandBuilder. What is the best way (easy and easy to manage) of disabling ...
1
vote
1answer
32 views

SqlDataAdapter.Fill suddenly taking a long time

I have an application with a central DataTier that can execute a query to a data table using an SQLDataAdapter. None of this code has changed but now all queries are taking at least 10x as long to ...
1
vote
3answers
210 views

Confused between SqlCommand & SqlDataAdapter

everyone I am a student and new to .NET and specially MVC3 development but for one of my project I’ve to work over it and so going through the learning phase Issue and confusion I am facing is ...
1
vote
1answer
80 views

Use Async CTP VB with SqlDataAdapter for a Select statement and a DataSet

I want to know how to use the ASYNC CTP to manage the querying of a SQL Database with a SQL Select statement and use a SQLDataAdapter to fill in a DataSet. I have downloaded the VS2010 SP1 and the ...
1
vote
1answer
60 views

use SqlDataAdapter to fill a tables in dataset with new name, code don't run completely and no error

as you see my code (its in myform_load) when i run project it continue to line 1. just not run other lines after that. i got no error but code don't run completely, after it come to line one myform is ...
1
vote
2answers
92 views

Retrieving all rows from sqlce in a single fetch

I have a query for the SQLCE database like select mobileNumber from customers where balance > 10000 Till now, I was looping over the SqlCeResultSet like while (resultSet.Read()) ...
1
vote
1answer
210 views

SQLDataAdapter filling datatable with primary key produces error and exits sub

Ok so this is going to take some explaining. The process I am trying to do is grab data from a table function in SQL and then fill a dataset with the returned values. I then have to run this query ...
1
vote
1answer
84 views

SqlDataAdapter.Update silently fails

In my application, I have a control that displays the contents of a database table to the user. This control holds the data to display in a System.Data.DataSet object. The user is able to modify the ...
1
vote
1answer
160 views

Add parameter to dataAdapter.fill()

I am trying to add a parameter to a sqlDataAdapter. I have tried to use parameters.add() but the adapter is not a sqlCommand. Here is some of my code. Private Sub convertToCSV(ByVal SqlQuery As ...
1
vote
2answers
89 views

SqlDataAdapter memory usage

I have an application which loads 1500,000 to a grid. Issue is it takes lots of memory. (1.8 GB) I observed following, Same query if I run on SQL Query Analyzer it takes around 60MB In application ...
1
vote
1answer
200 views

Why isn't Moles returning “moled” DataSet when mocking SqlDataAdaptor?

I've just started to use Moles to mock some tricky legacy code. In essence, I'm trying get a SqlDataAdapter to work with Moles. (BTW, I've been successful using moles with the SqlDataReader and ...
1
vote
1answer
115 views

Why both SqlDataAdaptor have to specify Table twice?

I am trying to Fill my DataSet with a Query in SqlDataAdaptor. What I do not understand is why do I have to specifically state the Table name in Fill, when I have already given to SqlDataAdapter which ...
1
vote
2answers
217 views

Simple Query Timing Out only in .net SqlDataAdapter

Ok, so I have this query that takes 2-5 seconds to run within Sql Management Studio. But when I am running it via my .net application, It exceeds the CommandTimeout of 5 minutes, every time. I know ...
1
vote
1answer
143 views

How Can I Insert New Column Into A Database Table Using SqlDataAdapter and DataTable?

In my .NET program, I want to modify database table's structure by inserting new column. But I do NOT want to do it by running "ALTER TABLE ....." command on database by ADO.NET. I want to do it by ...
1
vote
2answers
834 views

Convert Access 2010 to SQL 2008

just writing a tool (c# .Net 4) to convert an existing Access 2010 database to SQL Server 2008. At the moment i have to convert the data types and build the "create" commands for table and the ...
1
vote
2answers
110 views

SqlDataAdapter issues

There are several queries to be performed which return the DataTable object. In order to speed up the development I created a private method which should return the dataset by taking the query string ...
1
vote
3answers
290 views

SQL Server 2008 - Stored Procedure Gets Stuck When Called From WPF Service Using a SqlDataAdapter

This has me pulling my hair out. We have a workflow, hosted as a WCF service, which makes a call to another WCF service which then calls a stored procedure. Store procedure calls a merge, then ...
1
vote
2answers
772 views

SQL - SQLDataAdapter Update causing primary key violation

I need to be able to change the primary keys in a table. The problem is, some of the keys will be changing to existing key values. E.g. record1.ID 3=>4 and record2.ID 4=>5. I need to keep these as ...
1
vote
3answers
649 views

Get ID of the newly inserted record, using SqlDataAdapter

BGREX.BGREXDataTable _bRexDataTable = new BGREX.BGREXDataTable(); BGREX.BGREXRow bgRexRow = _bRexDataTable.NewBGREXRow(); bgRexRow.BGRes_TITLE = "abc"; bgRexRow.BGRes_VERSION = 123; ...
1
vote
1answer
425 views

DataSet Takes Only One DataGridView Change When Calling DataAdapter.Update

I am using the CellEndEdit event in DataGridView to detect when a user has finished editing a cell. I want to post the results back to the database. The datagridview is bound to a DataView. I retain ...
0
votes
3answers
27 views

MySqlDataAdapter failed to retrieve data on the first load

I use MySQL Connector for ASP.NET to retrieve data from my MySQL server. Everything seems to work fine, but just at the first asynchronous postback of my page, MySQLDataAdapter does not fill my ...
0
votes
1answer
48 views

SqlDataAdapter.Fill is too slow even for one record

I have a table with primarykey in MS SQL 2005, which has a few hundred thousand records. When I query it in Management studio for a record, it brings very quickly but when i use code below to find it, ...
0
votes
2answers
148 views

C# - DataSet (/Insert/Update in Multiple tables)

I dont know how to handle with DataSet very well (used to work with RecordSet in VB) so I made a method that looks very messy. Wondering which is the correct way to use DataSet. Problems I would like ...
0
votes
2answers
76 views

How SQLDataAdapter Fill method fires Database Queries?

I have a query in understanding the SQLDataAdapter fill method,which takes arguments like startRecord,MaxRecord as shown below - SqlDataAdapter adap = new SqlDataAdapter ("Select * from ...
0
votes
1answer
39 views

I can't store my data to my database

I have a problem storing my inserted data to my database. When I'm using mdf file that created within of visual studio it won't work. When I'm using dbo file that created from SQL Server 2008 it when ...
0
votes
2answers
305 views

sqldataadapter multiple tables and transaction

ADO.NET - Updating Multiple DataTables I found the question above which is exactly what I am looking for and trying to implement a solution... I am trying to see a best solution to updating multiple ...
0
votes
1answer
35 views

getdeletecommand doesn't delete anything

i'm trying to delete a row in the database with GetDeleteCommand() and DataAdapter.Update(). with GetInsertCommand() and GetUpdateCommand() the all transactions works, but with GetDeleteCommand() ...
0
votes
0answers
24 views

Preserving line-breaks when inserting using SqlDataAdapter

As part of a (C#) windows service I'm working on I'm pulling the contents of a CSV and dumping them into a single field on a single row in a DataTable. I'm using a DataTable because at times I may ...
0
votes
1answer
20 views

Why SQLCommandBuider not DELETING?

In the following code UPDATE is working but DELETE is not working. When I DELETE row it delete it and GridView1 does not show it but database still has it. customers has PrimaryKey. using ...
0
votes
1answer
107 views

SqlDataAdapter.Fill() - Conversion overflow

All, I am encountering "Conversion overflow" exceptions on one of the SqlDataAdapter.Fill() usages for a decimal field. The error occurs for value beginning 10 billion, but not till 1 billion. Here ...
0
votes
0answers
55 views

SqlDataAdapter UpdateBatchSize row errors

The DataAdapter has a ContinueUpdateOnError property which you can set to 'True' which will continue processing the DataAdapter.Update command, even if an error is encountered. This is ideal, so I ...
0
votes
1answer
56 views

dataset won't insert

I am trying to batch insert into a sql server table(TableX) with data from a dataset or datatable that was filled from a different sql table(TableY). The tables are identical in structure. I get no ...
0
votes
1answer
103 views

Using SqlDataAdapter.Update() with Parameters

How trying to figure out how to use SqlDataAdapter.Update(DataTable) method using a parameterised query. How can I add the values to the command without iterating over the whole DataTable? And how ...
0
votes
0answers
104 views

SqlDataAdapter Get Identity

I'm doing the following to get the identity of an inserted row: SqlConnection con = new SqlConnetion("connectiontxc"); SqlDataAdapter adap = new SqlDataAdapter("Select * from Student"); void ...
0
votes
0answers
40 views

use the values from the dataset table and assign it to the next select table aa parameterised value?

i am writing code to select some data from a table and fill the dataset using dataadapter.fill method. Now i want to use the values from the dataset table and assign it to the next select table aa ...
0
votes
1answer
352 views

SqlDataAdapter Get Identity after insert

I create a SqlDataAdapter after a fill it to Dataset. My question is that after insert I want to get the IDENTITY value for primary column. For example a give buttonedit1 editvalue is Id (this is my ...
0
votes
0answers
181 views

DBConcurrencyException on SQLDataAdapter Update

I get a DBConcurrencyException ("Concurrency violation: the UpdateCommand affected 0 of the expected 1 records.") when doing the following: SqlDataAdapter da = GetLocationAdapter(); int rowsAffected ...
0
votes
1answer
153 views

select NULL value from sql server db

i'm having a problem with a select statement. It looks like: myda = new SqlDataAdapter("Select * FROM tblAgenda WHERE tAgUsrId ='" + Session["usrId"] + "' AND tAgTBD = '" + Session["username"] + "' ...
0
votes
1answer
111 views

Reading and Updating Data Using SqlDataAdapter Question

I'm looking for some examples on how to best use SqlDataAdapter to access and update data in my application. Right now I have something like this: SqlDataAdapter adapter; DataSet myData = ...
0
votes
1answer
199 views

Why is my DataSet not populating my GridView

I dont know why my data is not showing in my gridview, if i use an sqldatasource with the same query it works. cmd.Connection = conn conn.Open() cmd.CommandText = "SELECT DISTINCT TOP ...
0
votes
1answer
452 views

Update from DataGridView with SqlDataAdapter

I have a DataGridView that displays data from a SQL Server database. It allows the user to edit the data and save it back to the database. The way that data gets saved back to the database is ...
0
votes
1answer
193 views

inserting DataTable into DB using DataAdapter does'nt work

I am trying to insert DataTable into a DB table (the DB is on a mobile device - Psion), using a DataAdapter. from some reason, it does not work - when i check the DB table - it simply appears as an ...
0
votes
2answers
672 views

Counting rows with a SqlDataAdapter

I have a problem in my code. I want to get the row count from my SqlDataAdapter if there are any rows.

1 2