1
vote
2answers
1k views

Saving Dataset to database

I am trying to save a dataset to a database. I got a dataset from another class, Now changes will be made on the form by a user on a datagridview, then the changed Dataset needs to be saved in the ...
0
votes
2answers
590 views

VB.NET 2008: invalid object name 'dbo.tablename'

I put my database to hosting provider. My desktop application works fine with local connection while quering with the tables and updating them. Application queries well without any issue with the ...
0
votes
1answer
833 views

Modify TableAdapter Commands at Runtime

Is it possible to modify the SELECT, UPDATE, DELETE, and INSERT commands for a tableadapter at runtime? What I want to do is set the commands for the tableadapter based on the connection type (SQL ...
0
votes
2answers
444 views

USING statement and TableAdapters Connection

I need some help with correctly implementing the USING statement with strongly typed TableAdapters I have something like this: Using myDT As New mbr_Account.mbr_AccountDataTable Using myTA As ...
0
votes
1answer
481 views

Change datatable and tableadapter schema at runtime according to stored procedure. C#

I have DataSet and TableAdapter for the table in that DataSet. The problem is that TableAdapter uses a stored procedure to fill DataTable, but the amount of returned columns can be different. How can ...
0
votes
1answer
618 views

Can't edit DataGridView cell in C#

I have a datagridview in Windows Forms C# application. It's datasource is DataSet, which has TableAdapter in it. The SQL method that gets the results has a couple INNER JOINs in it. The data is shown ...
0
votes
4answers
614 views

Sql Server 2005 Timeouts With .NET Adapters

I am running a query that returns ~30,000 rows from a C# TableAdapter, and often times I get an error like: Timeout expired. The timeout period elapsed prior to completion of the operation or the ...
0
votes
1answer
844 views

How to use #TempTable in SQL Server query for Report Builder Table Adapter?

Select * From #Tmp1 t1 Left Join #Tmp2 t2 On t1.RouteID = t2.RouteID Join chr.dbo.Employee ee On t1.EmployeeID = ee.EmployeeID Join chr.dbo.Department d On ee.DepartmentCode = d.DepartmentCode ...
0
votes
1answer
653 views

Convert varchar to a double in DataSet TableAdapter Fill

In SQL Server 2008, I have a strongly typed data set with a table: TABLE ID (Guid) Value (varchar(50)) This this table, Value actually represents an encrypted value on the database, which becomes ...
4
votes
3answers
537 views

Managing DB Changes in a C# Project

I have a C# app (in VisualStudio 2010) that used SqlServer 2005 accessed through TableAdapters in C#. I haven't discovered a good way to manage DB changes. For example, in my next release I have a ...
1
vote
1answer
178 views

Loss of data after updating .Net TableAdapter

I had a program working with a database I created using SQL Server Compact Edition. Everything was updating and showing fine. Then I decided to change the Fill SQL statement to order by a field. After ...
0
votes
3answers
796 views

Table adapter query gives an error that is not reproducable in SQL Server Management Studio

I am maintaining some queries defined in the table adapters designer in Visual Studio used in some reports in a Windows Forms application (.NET 2.0). When I run the application and execute a ...
0
votes
1answer
158 views

Typed Dataset ConstraintException on insert

Basically I have a table that contains hierarchical data. So I have an id column, and a rollup column which points to the id column for each child's parent. This table is loaded from the database ...
1
vote
3answers
2k views

How to check a delete / upadate operation completed successfully, using stored procedure?

Say we have stored procedure(s) performing simple operations CREATE PROCEDURE [dbo].[AddNewAuthorReturnID] ( @Author_Name VARCHAR(MAX), @Author_ID int OUTPUT ) AS SET NOCOUNT OFF; ...
0
votes
1answer
1k views

C# Display Join Query in DataGridView at designTime using TableAdapter, etc

I have a DataGridView I also have some tableAdapters (groupTableAdapter, userTableAdapter) generated from sqlserver database. I have created a JOIN query in userTableAdapter that shows users with ...
0
votes
1answer
95 views

tableadapter problem between dev and production server

I have a problem when trying to create a new sproc for a tableadapter. On my development server, Visual Studio is using my windows login; domain name/ username. When I try and create the same ...
0
votes
2answers
581 views

TableAdapter is returning phantom results in ASP.NET

I have a TableAdapter that is fetching rows from a stored procedure. For some reason, when there are no results, the TableAdapter returns an INT with value 0 instead of NULL. The stored procedure has ...
0
votes
1answer
986 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 ...
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
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 ...