The tableadapter tag has no wiki summary.
1
vote
2answers
958 views
TableAdapter query with an Int64 parameter over an ODBC data connection
In this case, the Visual Studio designer generates a method which takes the parameter as an int, even though the corresponding database column is specified as System.Int64.
This is the query ...
0
votes
1answer
987 views
Does SQL Server 2005 Automatically Convert Time Fields to UTC? Does ADO.Net?
I'm using Visual Studio 2008. I'm using an .xsd/tableadapters to access a SQL Server 2005 database. One of my tables has a DateTime field. When a record is inserted into the table, the time is ...
4
votes
1answer
2k views
How to use Npgsql with TableAdapter in C#
I have PostgresQL database, and I develop interface application using C# and Npgsql to connect to the database, how can I assign the Npgsql connection to TableAdapter?
Thanks,
1
vote
2answers
787 views
TableAdapter's Method Keeps Resetting to NonQuery From Scalar
I'm using a .xsd file in my Visual Studio 2008 Pro solution and I'm having a problem with the ExecuteMode property of the tableadapter methods resetting. I have created a handful of insert methods in ...
1
vote
1answer
874 views
Retrieve data from WCF to store on SQL Server CE (TableAdapter)
I have a Compact Framework 2.0 app that consume a WCF service. The data that retrieve from the service will be store on a SQL Server 2005 CE.
The SQL Server CE database has his own tables. I use a ...
3
votes
4answers
7k views
Control TableAdapter Command Timeout Globally
I have a DataSet with a QueriesTableAdapter. In order to control the SqlCommand.CommandTimeout I've added a partial class called QueriesTableAdapter with a public method called ChangeTimeout.
partial ...
3
votes
4answers
6k views
What happened to my TableAdapter's Update and Delete commands?
I am fighting a recalcitrant VS2008 DataSet designer, it seems. I have been trying to do what seems to be a simple 2-table dataset solution, where one table is simply the textual meaning for an ...
0
votes
5answers
2k views
How do designer-generated table adapters handle connections
How do table adapters make use of connections?
To explain that a bit, do they automatically open and shut connections or if I already have the connection open before calling a tableadapter method, do ...
0
votes
3answers
614 views
Does ADO.NET TableAdapters cache stored procedure names in a super secret location
I'm guessing Visual Studio is bugging out on me. I changed the stored procedure the a TableAdapter query uses and now the users keep getting the following error.
Procedure or function ...
0
votes
3answers
1k views
TableAdapter to return ONLY selected columns? (VS2008)
(VS2008) I'm trying to configure a TableAdapter in a Typed DataSet to return only a certain subset of columns from the main schema of the table on which it is based, but it always returns the entire ...
2
votes
2answers
6k views
ADO.NET databinding bug - BindingSource.EndEdit() changes current position
What is the correct order of processing an insert from a data-bound control using BindingSource, DataSet, and TableAdapter? This is causing me eternal confusion.
I have a form that is used to add a ...
0
votes
2answers
398 views
Same TableAdapter, Different DB
having to work in two parallel environments, developement and production, I want to use the same TableAdapter to connect to different databases (two Oracle databases running on different servers) with ...
0
votes
1answer
1k views
Forms Databinding - DataSet not updating?
I have a Form (Compact Framework, actually) with a few fields, a date and a string, among other things. Both TextBox controls are bound to properties in a BindindSource.
The BindindSource has a ...
6
votes
4answers
2k views
ADO.NET TableAdapter parameters
I have a query that I wish to run through an ASP.NET TableAdapter that contains an 'IN' clause which is to receive it's values through a parameter.
My question is, how do I specify this parameter? I ...
0
votes
1answer
3k views
VB.NET: Getting DataGridView to Populate from Stored Procedure
I was just handed a VB.NET prototyping effort, and I'm not very experienced with VB.NET.
I had to create a stored procedure which returns a self-referential table in order. Once, I completed that I ...
0
votes
1answer
702 views
TableAdapter occasionally returning row count 1 but all null columns
I'll hit refresh on my page 20 times and it will work, then a few minutes later it stops working for 5min. The tableadapter says that it has a count of 1 but when i access a property eg : ...
0
votes
2answers
2k views
BindingSource's and DataGridView's
I have two DataGridView's bound to an underlying DataSource through BindingSources and TableAdapaters.
I have two models; strings and tables.
Tables -> [id, handle, description]
Strings -> [id, ...
0
votes
2answers
397 views
TableAdapter error only during high traffic
I'm working on someone else's project that makes heavy use of tableAdapters. The site works but It regular adds an entry in the Event log :
"ExecuteReader requires an open and
available ...
0
votes
1answer
943 views
TableAdapter - updating without a key
I'm a total newbie at the .net c# business and dove in this last week creating a form application to shuffle data around for SSIS configurations. The geniuses at MS decided not to apply a key to the ...
0
votes
4answers
428 views
What's the best way to write “nulls” to SQL database when presenting options in combobox?
I'm writing a front end to a database, presenting options as comboboxes. And I need to be able to return nulls to the database.
I have a solution at the moment which involves 'fudging' a record into ...
0
votes
2answers
719 views
How to add a property to a Table Adapter that can be bound to?
I have a database table TravelRequest that contains, amongst other things, the fields SignOffName and SignOffDate. I have a table adapter TravelRequestTable based on this table. I have a DetailsView ...
0
votes
1answer
2k views
Big difference in execution time of stored proc between Managment Studio and TableAdapter
How could a stored procdure run in 10 seconds via Management Studio, but take 15 minutes via a TableAdapter for the same inputs? It is repeatable, meaning I have run it at least three times in each ...
0
votes
2answers
281 views
How do I prevent selectedValue altering when calling tableAdapter's Fill() method?
I have bound my ListBox to some data.
The problem is when I call myTableAdapter.Fill(..) method, SelectedValue changes to whatever is the first item ID in the list. Although "Selected Value" in VS is ...
2
votes
4answers
8k views
How do you filter a TableAdapter's FillBy based on two tables?
I'm using VS2008 C# Express and the Northwind database on a Windows Form application.
I used drag and drop to set up the master details binding (I used the Orders and Order Details) for the two ...
2
votes
6answers
6k views
Last inserted record ID problems using typed DataSet and DataGridView
I'm using following for a simple database application:
SQL Server Compact Edition .sdf file as database, with int primary key IDs.
Typed DataSet and BindingSource as data access layer
DataGridView ...
0
votes
1answer
930 views
How can I add non-column specific parameters to a C# table adapter?
I'm using a TableAdapter for the first time and adding a custom query to it, and I'm getting stuck on adding some search parameters to my query, here's what I've got:
SELECT *
FROM Orders
WHERE ...
2
votes
4answers
1k views
Calling Oracle SP with TableAdapter very slow
I have a query that runs super fast when executed in the sql editor (oracle): 1ms.
The same query (as stored procedure) when executed by a DataSet-TableAdapter takes 2 seconds. I'm just retrieving ...
0
votes
3answers
1k views
Why is Visual Studio's table adapter query not returning the same data as the stored procedure it represents?
I'm using a table adapter in Visual Studio to make a query to a stored procedure in my SQL Server 2005 database. When I make the call via my website application it returns nothing. When I make the ...
0
votes
1answer
6k views
C# Table Adapter Update Not Working
I am trying to serialize an object to a sql compact database. I am using VCS Express 2008. Every time I run a test to see if my data is sent to the database, nothing is in the database. My code:
...
3
votes
1answer
9k views
How do you read a byte array from a DataRow in C#?
I have a DataSet with a DataTable that fills a single row through a TableAdapter.
The TableAdapter is correctly filling a DataRow in the DataTable.
I am able to pull data from the DataRow with ...
0
votes
1answer
2k views
Altering a trigger in Sql Server 2005
I need to alter a trigger in sql server 2005 and I want to do it using a table adapter and a sql statement, not a stored proc. I know I could run this in the query browser and execute it but I need to ...