Tagged Questions
DataAdapter is a .Net framework class that facilitates communication between a DataTable and a database.
7
votes
3answers
3k views
Android - What does adapter.notifyDataSetInvalidated do?
What does the method adapter.notifyDataSetInvalidated() accomplish?
There is no documentation on it.
I am trying to reload a ListView and notifyDataSetChanged or notifyDataSetInvalidated don't seem ...
3
votes
3answers
159 views
“Like” query in adapter c#
I have a data adapter that was created from my data set. i want to do this query:
Select Body
WHERE Body Like '%@INPUTTEXT%'.
how can i do it? i want the "@INPUTTEXT" to be a parameter but ...
3
votes
3answers
254 views
How to format OracleNumber generically
I built a small query tool for Oracle with CSV export function with an OracleDataAdapter to fill a dataset that is displayed in a DataGrid (WinForms). At first I used .NET types (DateTime, decimal, ...
3
votes
5answers
1k views
Import Excel file to SQL Server row-by-row
I'm importing an Excel file (about 1000 records only) to a dedicated SQL Server database. As I need to work on the incoming data from Excel (add a GUID per row, some data conversions) I want to do it ...
3
votes
2answers
1k views
SQLiteDataAdapter Update method returning 0
I loaded 83 rows from my CSV file, but when I try to update the SQLite database I get 0 rows... I can't figure out what I'm doing wrong.
The program outputs:
Num rows loaded is 83
Num rows updated ...
3
votes
2answers
1k views
VS2005/VS2008 DataSet designer, insert a row into a table that has an autogenerated guid column
I have a strongly typed DataTable created with the VS2005/VS2008 DataSet designer.
The table has a Primary Key column that is a guid, which gets populated by SQL server. The problem is when I want ...
3
votes
4answers
3k views
C# Issue: What is the simplest way for me to load a .MDB file, make changes to it, and save the changes back to the original file?
My project that I am working on is almost finished. I am loading a .MDB file, displaying the contents on a DataGrid and attempting to get those changes on the DataGrid and save them back into the .MDB ...
3
votes
7answers
5k views
Is datareader quicker than dataset when populating a datatable?
Which would be quicker.
1) Looping a datareader and creating a custom rows and columns based populated datatable
2) Or creating a dataAdapter object and just (.Fill)ing a datatable.
Does the ...
2
votes
2answers
3k views
C# DataAdapter and DataSet with multiple table
I have read from many places that it is possible to fill a DataSet with multiple tables using a DataAdapter. It also does not say whether a single Update call can update all the tables in the DataSet.
...
2
votes
1answer
202 views
How Can I Expose Private Fields using a Partial Class in VB.NET?
This is my first post on Stack Overflow so please exuse (and feel free to point out) any n00b mistakes.
I am trying to implement transactions across multiple TableAdapters in VB.NET (using Visual ...
2
votes
1answer
95 views
Create a adapter without knowing the driver type
One of the great things with ADO.net is that you dont have to know which kind of connections/commands that you are using (interface based programming). You can use a connection to create a command, ...
2
votes
4answers
152 views
Database concurrency issue in .NET application
If userA deleted OrderA while userB is modifying OrderA, then userB saves OrderA then there is no order in the database to be updated. My problem is there is no error! The SqlDataAdapter.Update ...
2
votes
1answer
566 views
C# SQL Data Adapter System.Data.StrongTypingException
I get my data from SQL to Dataset with Fill. It's just one table with two columns (CategoryId (int) and CategoryName (varchar)).
When I look at my dataset after fill method, CategoryId Columns seems ...
2
votes
2answers
546 views
What do these .NET auto-generated table adapter commands do? e.g. UPDATE/INSERT followed by a SELECT
I'm working with a legacy application which I'm trying to change so that it can work with SQL CE, whilst it was originally written against SQL Server.
The problem I am getting now is that when I try ...
2
votes
2answers
1k views
DataAdapter.Fill() behavior for row deleted at the data source
I'm using the DataSet/DataTable/DataAdapter architecture to mediate between the database and my model objects, which have their own backing (they aren't backed by a DataRow). I've got a DataAdapter ...
2
votes
1answer
680 views
What to look for when setting UpdateBatchSize
I have a .NET application that is merging two datatables with a lot of rows (10,000+). There is a good chance of having a large number of update/inserts to perform to the SQL table when using the ...
2
votes
1answer
2k views
Define table names for results of multiple SQL selects in a single query
For example if I run the following query:
select * from table1
select * from table2
And run it with a DB adapter (C#) I get a dataset with two tables.
How can I define the names for the result ...
1
vote
2answers
56 views
C# TableAdapter and DataSet update with multiple table
I'm new in C# and I need some help.
I just want to update row in Session table by code below.
dbDataSet db = new dbDataSet();
SessionTableAdapter sessionTableAdapter = new ...
1
vote
0answers
41 views
Copy Data from Database1 Mysql TableA to Database2 Mysql TableA with Ado.NET
The transfer of data from one database to another with the Entitiy Framework doesn't seem to be simple. So i have another try with datatables & dataadapters:
MySqlDataAdapter dataAdapter = ...
1
vote
2answers
50 views
GetDeleteCommand DataAdapter with a temporary table in Sybase
Porting MSSQL Application to Sybase (ASE 15.0), and experiencing a problem when I call GetDeleteCommand.
The error reported is:
Dynamic SQL generation for the DeleteCommand is not supported ...
1
vote
0answers
100 views
SQL Server 2005 sees DateTime sproc parameter with 12:00 PM for time when only short date set on parameter
Had a weird issue yesterday with a .NET 3.5 application.
We have a web service that calls a stored procedure for search results. One of the parameters is a date. The parameter value is a short date ...
1
vote
2answers
781 views
How I can save the data from GridView to the database?
I am developing an ASP.Net C# Web Application that contains a GridView to display the records of a certain table from my database which I use ODBC Connection to connect to it and a DataSet to save ...
1
vote
1answer
127 views
How to fill a dataset with 3 different adapters in Vb.net?
Aim to Achieve :
I want to have 3 different dataTables from 3 different SQL queries from 3 different places into 1 single DataSet which I will have to return form my function.
I have :
Private ...
1
vote
1answer
416 views
C# DataAdapter.Update() does not Update the Database
I'm sure there is an extremely simple reason that this one line isn't working, but it has evaded for the past week, so I'm hoping someone else will notice my fault.
I have been working on this ...
1
vote
0answers
45 views
Dialog, Adapter and Data change
I have a custom alert dialog with this code adapter
adapter_nomi = new ArrayAdapter<nomi>(context, R.layout.dialog_lista_nomi, R.id.r_dialog_nomi, list_nomi){
@Override
...
1
vote
0answers
37 views
Reading tableNames from spm in C#
Is there a way I can read the table names which are returning me data from spm? I'm trying to read the tableNames used in the return stmt of spm executed to fill my dataset.
Is there any way this ...
1
vote
2answers
626 views
SqlDataAdapter.Fill() within a SqlTransaction - is this a bad practice?
Since I have a "DB util" class with a DataSet QueryDB(string spName, DBInputParams inputParams) method which I use for all my calls to the database, I would like to reuse this method in order to ...
1
vote
1answer
763 views
SQLiteDatabase.openDatabase vs SQLiteOpenHelper.getReadableDatabase
Is there any difference between these two methods? Both return an opened SQLiteDatabase. Both can create a database if one doesn't exist. SQLiteOpenHelper also has getWriteableDatabase when read/write ...
1
vote
1answer
400 views
DataAdapter.Update throwing an exception while execting update method
I'm using the ODBC Microsoft Text Driver to load a csv file into the dataset to be displayed in the datagridview, the DGV has no columns in at present. I can load the file successfully but I encounter ...
1
vote
0answers
35 views
Output Parameters used with update CASCADE issue, when using data adapters
I've manually created some data adapters – using the auto-generated ones is not viable due to version incompatibilities, for a dataset made of a number of tables with the usual mixture of PK, FK ...
1
vote
1answer
843 views
using DataAdapter to populate table
I have a disconnected dataTable that contains a few records.
I am using the following function to get the dataTable.
static System.Data.DataTable ReadSetUpTable(string queryStr,SqlConnection sc)
{
...
1
vote
1answer
316 views
ADO.NET DataAdapter
I have the following error when I call the update method on my dataAdapter, after deleting some rows :
The DELETE statement conflicted with the REFERENCE constraint "FK_Eleve_Classe". The conflict ...
1
vote
2answers
436 views
How to do transaction control on data access using DataAdapter and Stored Procedure in C#?
How to do transaction control on data access using DataAdapter and Stored Procedure in C#? Currently I want to execute 2 stored procedure calls via DataAdapter, but I want to do transaction control on ...
1
vote
0answers
117 views
Dataadapter and datasets issue
I have the following situation - three tables in the db :
- um_users (id, name)
- um_roles (id, description)
- um_user_roles (user_id, role_id)
I load into a data set two datatables : the "users" ...
1
vote
4answers
496 views
Returning a single row in a strongly typed DataSet in C#
I have a Strongly typed Dataset TableAdapter in C#, how do I get a single row from it?
1
vote
2answers
539 views
Using transactions with ADO.NET Data Adapters
Scenario: I want to let multiple (2 to 20, probably) server applications use a single database using ADO.NET. I want individual applications to be able to take ownership of sets of records in the ...
1
vote
0answers
366 views
Creating DataAdapters for Entity Framework
This relates to the reporting suite we are using, but I believe the pattern is the same for WinForms and other .NET technologies.
The reporting suite we are using (XtraReports 10) supports design ...
1
vote
2answers
202 views
DataAdapter SelectCommand that excludes current DataTable rows
Is there a clean method of creating a DataAdapter SelectCommand to select rows from the database that are not already present in the DataTable? I am calling DataAdapter.Fill(DataTable) and only want ...
1
vote
1answer
208 views
Saving and retrieving image in SQL database from C# problem
I used this code for inserting records in a person table in my DB
System.IO.MemoryStream ms = new System.IO.MemoryStream();
Image img = Image_Box.Image;
img.Save(ms, ...
1
vote
2answers
122 views
Problem with filling dataset
This is a small portion of my code file. Each time my debugger reaches the line 'NewDA.Fill(NewDS);' at runtime it jumps to the catch. I'm positive the daynumber variable gets a value that's present ...
1
vote
1answer
408 views
Is DataAdapter a reliable way to Insert data into an SQL Server Database
Yesterday My colleague told me that using data adapter to insert data into an sql server database is not reliable, because it does not guarantee that data are inserted properly. He also told me that ...
1
vote
1answer
561 views
How can I add multiple tables to dataset with Fill using IDataAdapter?
Refering to http://stackoverflow.com/questions/170455/how-can-i-read-multiple-tables-into-a-dataset#answer-366402
My App has a db factory. Can i use 'da.Fill(ds)' [with IDataAdapter implementation] ...
1
vote
3answers
851 views
C#: Update dataset without any primary key
Is it possible in C# to use an OleDbAdapter and use its Update method for a dataset when a table has no primary key and how can I do this?
1
vote
3answers
463 views
Why does the FbDataAdapter throw a NullReferenceException after batch updating for about a minute?
When updating a DataTable with 1850-ish new rows to a FbDataAdapter I get a NullReferenceException during execution.
Usually it succeeds in inserting around 1200 records, sometimes more, sometimes ...
1
vote
0answers
363 views
Why is the DataAdapter not getting error thrown by trigger
I have a trigger on a view that handles update operations. When I use the MS Management Studio and do an insert I get this error:
Msg 50000, Level 16, State 10, Procedure ...
1
vote
2answers
1k views
.NET DataSet.HasChanges is incorrectly false
Has anybody come across ds.hasChanges() being false despite that the ds clearly has the changes while you check it at a breakpoint?
I've been looking at it for quite a while and I can't see what is ...
1
vote
1answer
643 views
Is this a bug in DataTable API? Changes are stored/executed in the “wrong sequence”
Edit: any comments whether you think this is a .NET bug or not would be appreciated.
I have a bug which I've managed to simplify to the following scenario:
I have a DataTable where the primary keys ...
1
vote
1answer
1k views
SqlDataAdapter.Update doesn't work
I'm using SqlDataAdapter.Update(DataTable) to throw a table at the database, but the SqlDataAdapter ignores my InsertCommand to write its own, which only sends the primary key and all the rows that ...
1
vote
1answer
628 views
DataAdapter Select string from base table schema?
When I built my .xsd, I had to choose the columns for each table, and it made a schema for the tables, right? So how can I get that Select string to use as a base Select command for new instances of ...
1
vote
2answers
1k views
DataAdapters against Typed DataSets = SQL Schema nightmares
I have seen many references stating that TableAdapters are weak and silly, and that any real dev would use DataAdapters. I don't know if that is true or not, but I am exploring the matter, and ...