Tagged Questions
0
votes
1answer
257 views
Updating multiple tables using SqlDataAdapter
I've been trawling through pages and pages on the internet for days now trying different approaches and I'm still not sure how I should be doing this.
On my third InsertCommand, I'd like to reference ...
0
votes
1answer
89 views
SQL Server DataSet sync changes back to SQL server
I have a question that I would think would be easy, but I can't figure it out.
I'm working in Visual Studio 2012 with a typed DataSet that I generated from SQL Server. I added a column to one of the ...
-1
votes
2answers
70 views
Getting unique field after adding row? [duplicate]
Possible Duplicate:
Retrieve identity value from inserted record's primary key
I have a field with a unique field (that I don't have to update automatically) called ID. I'm using this ...
2
votes
1answer
1k views
Retrieve identity value from inserted record's primary key
i cannot retrieve the new identity value from an inserted record(via DataAdapter.Update) in my DataRow.
I'm using a strong typed Dataset as DAL. The table i want to update is joinded with other ...
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 ...
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 ...
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 ...
0
votes
1answer
672 views
Getting one row from a Strongly Typed dataset without getting who table
I currently have this code:
/// <summary>
/// This is an ineffecient method of getting a tenant by their id.
/// </summary>
/// <param name="id">int ID of the tenant ...
0
votes
1answer
173 views
Concat Columns with NULL-values
I want to concat two Columns in the TableAdapter Wizard of the VS Dataset-Designer.
The problem is that one column has NULL-Values and hence the concatination results in NULL regardless of the value ...
2
votes
1answer
219 views
SQL Server and .NET Typed Dataset AllowDBNull Metadata
Good afternoon,
I am generating a typed dataset from a stored procedure. The stored procedure may contain something like:
select t1.colA, t2.colA AS t2colA
from t1
inner join t2
on t1.key ...
0
votes
4answers
898 views
Extract data from SQL Server database
I've connected to database, using data set .xsr now I wan't to extract all rows in my table. Here is my table structure :
Lastname
Address
zipcode
city
country
email
So here is one example of table ...
2
votes
2answers
519 views
SQL/.NET TableAdapters - How do I strongly-type calculated columns in either the database or the DataSet?
We use calculated columns in a few SQL Server 2005 tables which always return data of a specific type (bit, varchar(50), etc...).
These tables are consumed by a .NET data layer using strongly-typed ...
3
votes
5answers
1k views
How to migrate from MS Access to SQL server 2005?
I have a VB.NET windows application that pulls information from an MS Access database. The primary role of the application is to extract information from Excel files in various formats, standarize the ...
