Returning SQL error to Application
Thu, 18 Oct 2007 14:36:10 -0000
I've build an application in Vs2005. For the dataaccesslayer i've
create the dataset with the datasource tool. After that i build stored
procedures for doing actions on the database. Now i want to return the
error messages to my application.
It's possible to give the errornumber back to the application, but i
...
|
No Data Menu with Web Service
Wed, 17 Oct 2007 13:31:25 -0700
I am wrinting a data service to access and update a datset. I am
having problem when I try to add a SqlConnection to a web service.
Using C# in VS 2005 I started a new web service project. Then I made
a new Sql server data base and added one table I also added some
data.
So far so good. The data base shows up ...
|
RE: Install Error 105 for vs.net2003
Tue, 16 Oct 2007 01:58:48 GMT
There's a moreinfo.htm file in the installation that explains how you can install individual components. I followed the steps in that to get around the 105 problem
From http://www.developmentnow.com/g/3_2005_2_0_0_59984/Install-Error-105-for-vs-net2003.htm
Posted via DevelopmentNow.com Groups
http://www.developmen ...
|
concurrency exception
Thu, 11 Oct 2007 08:12:00 -0700
I understand how a concurrency exception will be thrown if the orignal values
of the dataset mismatch those of its datasource. But can this exception be
thrown if while the data adaptor's update method is executing, the dataset
values (not datasource) are being changed on another thread? ...
|
Troubles with updating Typed dataset bound to some controls
Wed, 10 Oct 2007 16:07:04 -0700
Hi,
I have a typed dataset created on northwind database. It relates to a
single table, Employees.
I created the following stored procs for crud operations:
CREATE PROCEDURE [dbo].[DeleteEmployees] @EmployeeID int
AS
DELETE FROM [dbo].[Employees]
WHERE
[EmployeeID] = @EmployeeID
GO
CREATE PROCEDUR ...
|
HOW DO I READ PDF FILES ON INTERNET EXPLORER OR AOL
Tue, 2 Oct 2007 10:19:01 -0700
HOW DO I READ PDF FILES ON I E OR AOL ...
|
VS2005 VB.net how 2 users updating same record from DataGrid handl
Fri, 21 Sep 2007 11:36:02 -0700
Hello
When using VS2005 VB.net when 2 users are using the same application that
has a form with a DataGrid control on it and they both update the same record
on their local dataset, when they go to update that same record on the
database how does updating the same record on the database handled?
...
|
|
|
Enterprise Library database connection!
Mon, 10 Sep 2007 11:30:37 +0100
Hi,
I need to connect to a database the connection string of which is determined
at runtime.
I am using Enterprise Library 3.0 for data access. How can I connect to a
database
at runtime, without hardcoding the connection string in the web.config.
Please help!!
Thanks.
Rick
...
|
Does VS2005 IDE utilize column description of SQL Server 2005 tabl
Thu, 23 Aug 2007 15:22:04 -0700
If I add description (extended property) to SQL Server 2005 table columns,
will VS2005 IDE show the description instead of the column name? ...
|
VS Dataset dosent see Columns from Temp Tales
Thu, 16 Aug 2007 17:48:25 -0700
Problem: When creating a DataSet in VS from stored proc, if the stored proc
uses temp tables, the dataset see's no columns and gives error #tempTableName
is an invalid object.
Details: stored proc simple example does "select fname into #temp from
customers ; Select fname from #temp; Right click App_code in ...
|