Tagged Questions
0
votes
2answers
178 views
Populating multiple tables in typed dataset
I'll try to simplify my problem as much, as possible.
Feel free to comment and correct my English. Hope you can understand me.
My main question is:
Is there any simple and "automated" way, to fill ...
1
vote
2answers
126 views
Offline application - database
I have a problem with in choosing a database for desktop applications.
The application will work offline, and require a relational database.
My first idea was to create a strong typed dataset and ...
0
votes
4answers
293 views
i have a problem implementing the mvp pattern in c# and asp.net
i've created a forum system in MVP pattern but i'm not sure if i implemented it in a right way. so here is what i ended up with:
i've created a database which has three tables: forums, threads, ...
0
votes
3answers
187 views
.NET Database application guidance
I'm stumbling in the data wilderness and feel very lost, so i am asking for help.
I have done some database apps in VS (C#) winforms for some time, wpf lately. These are small to medium apps (embedded ...
1
vote
1answer
971 views
How to Add a command/SQL statement to a strongly typed TableAdapter's Update/Insert command?
See this question. I have the following code that executes against a SQLIte database using a strongly typed dataset.
messagesAdapter.Update(messages);//messages is a DataTable
var ...
1
vote
2answers
258 views
How to execute a custom command against a typed dataset
I want to execute a custom command against a typed dataset I created using the dataset designer. For this I need to get a reference to the underlying connection, right? How to go about this? In which ...
5
votes
3answers
4k views
Inserting Rows in Relationship using a Strongly Typed DataSet
I'm using ADO.NET with a strongly typed dataset in C# (.NET 3.5). I want to insert a new row to two tables which are related in an 1:n relation.
The table Attachments holds the primary key part of ...
4
votes
2answers
699 views
Typed Datasets: a Good choice or Bad - Why one should use or not use Typed datasets in their applications?
Ever since .net 2.0 release this question has been discussed over a large number of times. Many of the developers are not in favour of Typed datasets and there are few who use them practically.
The ...
2
votes
2answers
2k views
Strongly Typed DataSet with a set of TableAdapters per database provider?
I want a strongly-typed DataSet along with designer TableAdapters, but Visual Studio's DataSet designer generates provider-specific (e.g. SQL Server vs. MySql) code and I don't want to commit to just ...