Tagged Questions
0
votes
1answer
70 views
Sort a typed data set [duplicate]
I have a server-client architecture for a reporting tool,
where the server generates a report and the client displays it.
I have a created a strongly typed data set with one table, and filled it with ...
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
1answer
275 views
how create a sql database fom a stongly typed dataset
I'm looking for an easy way to transfer a database schema I have developed inside visual studio as a strongly typed dataset (xsd file) into a corresponding sql server database. Silly me I assumed the ...
1
vote
3answers
850 views
Using Strongly typed DataSet in VB.Net Project
Is using strongly typed dataset is good.
Currently I am working on a project developed using VB.Net in Visual Studio 2010.
Previously they were using Sql queries directly into SqlCommand of ...
0
votes
1answer
124 views
Inserting new tuples into a 1 to many relationship tables using c# DataSet
I have a typed DataSet with two TableAdapters (1 to many relationship) that was created using visual studio 2010's Configuration Wizard. The child table's FK uses cascading. It is a small part of an ...
0
votes
1answer
540 views
Custom DataSet.Table.FindBy method
I have a strongly-typed DataSet that was created using visual studio 2010's Configuration Wizard. I can find a DataRow easily as long as I know the primary key (see How to: Edit Rows in a DataTable).
...
0
votes
1answer
204 views
can't find SQL code for XSD schema tables
The following snippet below came from a *.xsd (XML Schema built in Visual Studio) file. I'm trying to figure out where the SQL code lives for the data that can be retrieved with these Strongly Typed ...
5
votes
5answers
7k views
Passing a SQL parameter to an IN() clause using typed datasets in .NET
First apologies as there are similar questions on this site, but none of them answer this problem directly.
Im using typed datasets in VS 2010. I create a TableAdapter in a Dataset with a query like:
...
2
votes
1answer
1k views
SQL Server VARBINARY(MAX)
I have a stored procedure that inserts a varchar & VARBINARY(MAX) values in the table.
I pass a c# byte[] to the varbinary(max) field. I also see that the size of the byte[] size is 80142 which ...
0
votes
1answer
378 views
Invalid Cast Exception when filling datatable wth table adaptor
I am using VB.NET 2010 (Visual Basic 2010 Express) on a WPF-based project. I am also using the SQL Server Express built-in to Visual Basic 2010 express.
I have just about finished refining my code ...
0
votes
1answer
504 views
SQL Compact, new DataSet, identity column in reverse order and no commit?
I created a new .dsf database for my application. I added just one table with two columns, "ID" (int, auto-increment, step=1, start=1) and another column called "Name" of nchar.
Then I added a new ...
2
votes
2answers
150 views
Calculations on Subquery in strong typed dataset
following background: i have a Table-valued Function that returns a Table that is a kind of filtered view(views can not be parameterised) on a large table. Now i need many row count values on ...
2
votes
4answers
1k views
How do I get the primary key of the row I just inserted into a typed dataset in .net?
I have some VB.net code that inserts data into my SQL database using a typed dataset as follows:
dim usersTa As New authorizedUsersTableAdapters.Authorized_UsersTableAdapter
usersTa.Connection = ...
1
vote
3answers
2k views
MS-Access: TableAdapter UpdateCommand for table without primary key
What's the syntax for an Update query for a table without a primary key?
Disclaimer: Frustratingly, adding a primary key is not an option. My program is a small program in a much larger system with ...
2
votes
1answer
527 views
Switched from inproc to SQL Server gives me SQL timeouts (no connection max pool size, typed datasets)
Here is my situation:
I have a web and database server (SQL Server 2005) in a LAN.
The webserver(iis6) has several application pools and sites run fine with asp.net session inproc. both servers run ...
0
votes
2answers
472 views
Prevent Typed DataSet updating PK column
I have a typed dataset, and where I call TableAdapter.Update(DataRow), the SQL executed includes an update of the primary key column of the database.
Unfortunately, when this code runs on a ...
0
votes
3answers
1k views
How to use Strongly Typed dataset designer to configure multiple updates?
I am using strongly-typed-dataset as an ORM to wrap around my Microsoft Access database, now I am looking for a way to create an equivalent of
UPDATE table1 SET table1.nationality = 'england'
WHERE ...
