Tagged Questions
0
votes
1answer
69 views
how to use table adapter to bind with asp gridview?
i am trying to bind my grid to table adapter data, this is what i do :
DataSourceDepartement dpt = new DataSourceDepartement();
DataSourceDepartementTableAdapters.departementTableAdapter
...
0
votes
2answers
84 views
How or where to remove generated SQL from tableadapter code?
I've been developing an app which uses strongly typed datasets and stored procedures. I've just graduated and this was the method that was sold to us as the way to go. I'm starting to have severe ...
0
votes
1answer
41 views
Listing out all the names of ASP.Net methods and mappings for a DataSet created in DataSet Designer
When a typed DataSet is created using the Visual Studio DataSet Designer, several methods, etc. are generated.
Example:
DataSetStudentsAndParentsTableAdapters.DataTableTableAdapterStudentsAndParents
...
0
votes
0answers
406 views
Sorting data in an ASP.Net GridView based on changing TableAdapter sorting
Is there a better way to do this?
We have many ASP.Net GridViews. This particular one is small but the others have many columns in each.
The DataSources for the GridViews are all strongly typed ...
0
votes
1answer
448 views
Creating a DataView for sorting ASP.Net GridView columns
We have a typed DataSet created by the Visual Studio DataSet designer.
Can you tell me how to create a DataView object from the typed DataSet? We want to change the sorting of it so it can be ...
0
votes
2answers
332 views
Updating tableadapter throws error Input string was not in a correct format
When I call
TA.Update(row)
I receive the following error, but I have no idea how to debug it. Is there a way to determine which exact field is causing the issue?
Server Error in '/' Application. ...
1
vote
1answer
827 views
Updating ASP.Net / VB.Net database with strongly typed DataSet
We would like to update data in a SQL Server 2012 database with a value obtained from
changing a value on an ASP.Net DetailsView. I Would would like to update the database using
a strongly typed ...
0
votes
1answer
175 views
Failed to convert parameter value from string to guid
I have a tiered application. The datalayer makes a call to the database by using a dataset which contains a tableadapter. In the database table there is a field called ID of type UniqueIdentifier. I ...
2
votes
1answer
147 views
Table adapter with visual studio Final Code
I enter values in User Name and Password in two text boxes. When I click submit, I want the table adapter to check the database to see if those are really the values and allow the user to log in.
...
-1
votes
4answers
968 views
3 Tier Architecture c#.
I having problems with my 3 tier architecture. It seems that I could not count the number of players due to implicit conversion from object to Int.
DropDownList
protected void ...
0
votes
0answers
191 views
Unable to reference TableAdapter or DataSet in ASP.net and C#
I've got a ASP.NET C# Website on .NET 4.0, and I'm going a bit crazy! I cannot reference the newly created DataSet, TableAdapter, or the strongly typed classes in my code.
I've written a second ...
0
votes
1answer
122 views
How to read errors from database when using TableAdapter?
I am using TableAdapter, but I cannot capture any errors that comes from SQL. Here is a piece of my code:
errorText = "";
DataTable AddFilesResult = new DataTable();
var ...
1
vote
0answers
283 views
ASP.NET Compile Error BC30002 w/ Tableadapter
I'm currently working on my first ASP.NET website and I'm receiving the following error:
Compiler Error Message: BC30002: Type 'YPCDataSetTableAdapters.UserTableAdapter' is not defined.
Line 13: ...
0
votes
1answer
158 views
Trying to Call an Update method in Button Click event
I am looping 2 Datagrids and getting the IndividualID's (PrimaryKeys) of the person(s) that are selected. I have debugged this and the loops are working fine. Howver when I call my Update Method from ...
0
votes
2answers
125 views
Returning value from delete statement in TableAdapters
Good Afternoon,
Does any body know if we can return values from a delete statement when using it with the TableAdapters (types dataset).
The delete statement uses a stored procedure which returns ...
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 ...
2
votes
2answers
1k views
Dataset: How to capture the primary key value returned by SELECT SCOPE_IDENTITY()?
I'm using a dataset. I have a table Adapter called PackageTableAdapter, which contains a method called InsertPackage.
INSERT INTO [dbo].[Packages] ([UserID], [Name]) VALUES (@UserID, @Name)
//Return ...
1
vote
1answer
994 views
ASP.NET Get a single value returned from TableAdapter Select Query
I'm using TableAdapters on my ASP.NET Project and I've become stuck on an issue of the way to retrieve this data.
The code is as follows:
BookingDataTableAdapters.bookingTableAdapter ta = new ...
1
vote
3answers
779 views
ASP.net simple delete query, pass in string value
DELETE FROM tblArtworkApprovalUsers
WHERE (userID NOT IN (@UserIDList)) AND (approvalID =
(SELECT ID
FROM tblArtworkApprovals
...
2
votes
5answers
317 views
ASP.net c# database connectivity getting into a mess
I'm just starting development on a new website and am trying to do it correctly, that is, with a DAL and not with queries in code which I had before.
I understand the principles of it all, but I am ...
0
votes
1answer
612 views
iterating through the rows of a table using tableadapters in vb.net
i have a problem. I have database with a tableadpater. i want to get the userid with this tableadapter.
Dim dsGN As New ForumTableAdapters.Message2TableAdapter
Dim dtBetrieb As Data.DataTable = ...
1
vote
5answers
4k views
Getting @@IDENTITY from TableAdapter
I am trying to complete a seemingly simple task that has turned into a several hour adventure: Getting @@Identity from TableAdapter.Insert().
Here's my code:
protected void submitBtn_Click(object ...
0
votes
2answers
367 views
What's the best way of rounding numbers in an ASP.NET GridView bounded to a DataTable?
I have a GridView that is bound to a DataTable, which in turn uses a TableAdapter, like so:
ResultTableAdapter tableAdapter = new ResultTableAdapter();
ResultDataTable dataTable= ...
1
vote
2answers
909 views
Remove a Parameter from DetailsView ItemUpdating
Here's the setup
I have a DetailsView whose DataSource is an ObjectDataSource.
The ObjectDataSource has two methods, select and update, that are stored procedures defined in a TableAdapter.
The ...
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 ...
2
votes
1answer
543 views
Transaction handling with TransactionScope
I am implementing Transaction using TransactionScope with the help this MSDN article
http://msdn.microsoft.com/en-us/library/system.transactions.transactionscope.aspx
I just want to confirm that is ...
3
votes
3answers
3k views
asp.net InsertCommand to return latest insert ID
I'm unable to retrieve the latest inserted id from my SQL Server 2000 db using a typed dataset in asp.NET
I have created a tableadapter and I ticked the "Refresh datatable" and "Generate Insert, ...
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 ...
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 ...
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
2answers
718 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 ...
