472,805 Members | 1,768 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 472,805 software developers and data experts.

Stored Procedures with SQLCommandBuilder

I have a very strange thing occurring in the program. I have a dataset
retrieved from a stored procedure that just select * from a table. I then
try to use the SQlCommandBuilder on the dataset, and fails. I try the same
select statement directly and not using a stored procedure and use
SQLCommandBuilder, the program works. This is a ASP.net page, and I am
stumped. I would like to use the stored procedure rather than controlling
it in the ASP.net page. Can anyone help? Thanks.
Nov 18 '05 #1
5 2790
For a start, though not the answer you're currently looking for I would
separate out all your database activity into a separate assembly.

Unfortunately I've not used SQLCommandBuilder yet, so this is all I can
currently contiribute.

FWIW
Colin

"microsoft.private.windows.netserver.setup" <ra***********@shaw.ca> wrote in
message news:em**************@TK2MSFTNGP10.phx.gbl...
I have a very strange thing occurring in the program. I have a dataset
retrieved from a stored procedure that just select * from a table. I then
try to use the SQlCommandBuilder on the dataset, and fails. I try the same select statement directly and not using a stored procedure and use
SQLCommandBuilder, the program works. This is a ASP.net page, and I am
stumped. I would like to use the stored procedure rather than controlling
it in the ASP.net page. Can anyone help? Thanks.

Nov 18 '05 #2
To add to Colin's comment, the Data Access Application Block released by
MSFT is a nice set of pre-written
functions for DB access, and a good place to start.

http://msdn.microsoft.com/library/de...ml/daab-rm.asp

-John

"Colin Basterfield" <co**************@hotmail.com> wrote in message
news:uV**************@TK2MSFTNGP09.phx.gbl...
For a start, though not the answer you're currently looking for I would
separate out all your database activity into a separate assembly.

Unfortunately I've not used SQLCommandBuilder yet, so this is all I can
currently contiribute.

FWIW
Colin

"microsoft.private.windows.netserver.setup" <ra***********@shaw.ca> wrote in message news:em**************@TK2MSFTNGP10.phx.gbl...
I have a very strange thing occurring in the program. I have a dataset
retrieved from a stored procedure that just select * from a table. I then try to use the SQlCommandBuilder on the dataset, and fails. I try the

same
select statement directly and not using a stored procedure and use
SQLCommandBuilder, the program works. This is a ASP.net page, and I am
stumped. I would like to use the stored procedure rather than controlling it in the ASP.net page. Can anyone help? Thanks.


Nov 18 '05 #3
It has to be doable. I am sure it is just the TableMappings of the stored
procedure. The result set from the stored procedure is sp_WellProperties,
but the SqlCommandBuilder is asking for WellProperties which is the actual
name of the table. Even when I use sqlAdaptor.TableMappings.Add("Table",
"WellProperties") it still doesn't work. I am quite sure I have
WellProperties incorrect.in the TableMappings Add method. Is there a way to
get the actual name of the dataset that was returned by the stored
procedure? Thanks.

"John Amick" <an*******@discussions.microsoft.com> wrote in message
news:em**************@TK2MSFTNGP09.phx.gbl...
To add to Colin's comment, the Data Access Application Block released by
MSFT is a nice set of pre-written
functions for DB access, and a good place to start.

http://msdn.microsoft.com/library/de...ml/daab-rm.asp
-John

"Colin Basterfield" <co**************@hotmail.com> wrote in message
news:uV**************@TK2MSFTNGP09.phx.gbl...
For a start, though not the answer you're currently looking for I would
separate out all your database activity into a separate assembly.

Unfortunately I've not used SQLCommandBuilder yet, so this is all I can
currently contiribute.

FWIW
Colin

"microsoft.private.windows.netserver.setup" <ra***********@shaw.ca> wrote
in
message news:em**************@TK2MSFTNGP10.phx.gbl...
I have a very strange thing occurring in the program. I have a dataset
retrieved from a stored procedure that just select * from a table. I

then try to use the SQlCommandBuilder on the dataset, and fails. I try the

same
select statement directly and not using a stored procedure and use
SQLCommandBuilder, the program works. This is a ASP.net page, and I am stumped. I would like to use the stored procedure rather than controlling it in the ASP.net page. Can anyone help? Thanks.



Nov 18 '05 #4
Could you post your code? That might help someone come up with an answer
for you.

-John

"microsoft.private.windows.netserver.setup" <ra***********@shaw.ca> wrote in
message news:uz**************@TK2MSFTNGP10.phx.gbl...
It has to be doable. I am sure it is just the TableMappings of the stored
procedure. The result set from the stored procedure is sp_WellProperties,
but the SqlCommandBuilder is asking for WellProperties which is the actual
name of the table. Even when I use sqlAdaptor.TableMappings.Add("Table",
"WellProperties") it still doesn't work. I am quite sure I have
WellProperties incorrect.in the TableMappings Add method. Is there a way to get the actual name of the dataset that was returned by the stored
procedure? Thanks.

"John Amick" <an*******@discussions.microsoft.com> wrote in message
news:em**************@TK2MSFTNGP09.phx.gbl...
To add to Colin's comment, the Data Access Application Block released by
MSFT is a nice set of pre-written
functions for DB access, and a good place to start.

http://msdn.microsoft.com/library/de...ml/daab-rm.asp

-John

"Colin Basterfield" <co**************@hotmail.com> wrote in message
news:uV**************@TK2MSFTNGP09.phx.gbl...
For a start, though not the answer you're currently looking for I would separate out all your database activity into a separate assembly.

Unfortunately I've not used SQLCommandBuilder yet, so this is all I can currently contiribute.

FWIW
Colin

"microsoft.private.windows.netserver.setup" <ra***********@shaw.ca> wrote
in
message news:em**************@TK2MSFTNGP10.phx.gbl...
> I have a very strange thing occurring in the program. I have a dataset > retrieved from a stored procedure that just select * from a table. I
then
> try to use the SQlCommandBuilder on the dataset, and fails. I try

the same
> select statement directly and not using a stored procedure and use
> SQLCommandBuilder, the program works. This is a ASP.net page, and I

am > stumped. I would like to use the stored procedure rather than

controlling
> it in the ASP.net page. Can anyone help? Thanks.
>
>



Nov 18 '05 #5
I have pasted the code from the original file. I am sure that it is because
it is trying to write back to the sp_WellPropertiesDatasets stored
procedure. Of course this can't be done, becuase the stored proc just
retrieves the table. I then tried a table mapping, but I think I have the
wrong original table name, thus in SqlCommandBuilder it still thinks it is
coming from a table named sp_WellPropertiesDatasets. Any help greatly
appreciated, thanks.

Code;
'loads each section of the WellProperties table
Sub Load_UserForm()
sqlSQLCommand = New SqlCommand( strSQL2, sqlConnect )
sqlDataAdaptor = New SqlDataAdapter( sqlSQLCommand )

'add the table mappings (parameters is name of new table name, and
original table name)
sqlDataAdaptor.TableMappings.Add( "Table", "WellProperties" )

sqlDataAdaptor.Fill( sqlDataSet1, "Table" )
'Response.Write(sqlDataSet1.DataSetName)

'bind to the datagrid, the key is ID field
WellProperties.Datasource() = sqlDataset1
WellProperties.DataBind()
End Sub

'save the changes back to the database
Sub SaveDatasets(s As Object, e as EventArgs)
'change a piece of data
'sqlDataset1.Tables("WellProperties").Rows(0)(2) = "Test4"
'original value is Heavy

'create the sqlcommandbuilder
Dim cbWellProperties As New SqlCommandBuilder( sqlDataAdaptor )

'display the update statement of the records that were changed
strDebug.Text = cbWellProperties.GetUpdateCommand().CommandText

'push the updates to the database
sqlDataAdaptor.Update( sqlDataSet1 )

'bind to the datagrid, the key is ID field
WellProperties.Datasource() = sqlDataset1
WellProperties.DataBind()
End Sub

"John Amick" <an*******@discussions.microsoft.com> wrote in message
news:u9**************@TK2MSFTNGP11.phx.gbl...
Could you post your code? That might help someone come up with an answer
for you.

-John

"microsoft.private.windows.netserver.setup" <ra***********@shaw.ca> wrote in message news:uz**************@TK2MSFTNGP10.phx.gbl...
It has to be doable. I am sure it is just the TableMappings of the stored
procedure. The result set from the stored procedure is sp_WellProperties, but the SqlCommandBuilder is asking for WellProperties which is the actual name of the table. Even when I use sqlAdaptor.TableMappings.Add("Table", "WellProperties") it still doesn't work. I am quite sure I have
WellProperties incorrect.in the TableMappings Add method. Is there a way
to
get the actual name of the dataset that was returned by the stored
procedure? Thanks.

"John Amick" <an*******@discussions.microsoft.com> wrote in message
news:em**************@TK2MSFTNGP09.phx.gbl...
To add to Colin's comment, the Data Access Application Block released by MSFT is a nice set of pre-written
functions for DB access, and a good place to start.

http://msdn.microsoft.com/library/de...ml/daab-rm.asp

-John

"Colin Basterfield" <co**************@hotmail.com> wrote in message
news:uV**************@TK2MSFTNGP09.phx.gbl...
> For a start, though not the answer you're currently looking for I would > separate out all your database activity into a separate assembly.
>
> Unfortunately I've not used SQLCommandBuilder yet, so this is all I can > currently contiribute.
>
> FWIW
> Colin
>
> "microsoft.private.windows.netserver.setup" <ra***********@shaw.ca>

wrote
in
> message news:em**************@TK2MSFTNGP10.phx.gbl...
> > I have a very strange thing occurring in the program. I have a dataset > > retrieved from a stored procedure that just select * from a table. I then
> > try to use the SQlCommandBuilder on the dataset, and fails. I try the > same
> > select statement directly and not using a stored procedure and use
> > SQLCommandBuilder, the program works. This is a ASP.net page, and

I am
> > stumped. I would like to use the stored procedure rather than
controlling
> > it in the ASP.net page. Can anyone help? Thanks.
> >
> >
>
>



Nov 18 '05 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

11
by: jrefactors | last post by:
I want to know the differences between SQL Server 2000 stored procedures and oracle stored procedures? Do they have different syntax? The concept should be the same that the stored procedures...
2
by: scott | last post by:
Hi, Just wondering what sort of problems and advantages people have found using stored procedures. I have an app developed in VB6 & VB.NET and our developers are starting to re-write some of the...
2
by: Kent Lewandowski | last post by:
hi all, Recently I wrote some stored procedures using java jdbc code (admittedly my first stab) and then tried to implement the same within java packages (for code reuse). I encountered...
5
by: Tim Marshall | last post by:
I was following the thread "Re: Access Treeview - Is it Safe Yet?" with interest and on reading the post describing Lauren Quantrell's SmartTree, I've run into something I don't understand: Stored...
2
by: Dino L. | last post by:
How can I run stored procedure (MSSQL) ?
45
by: John | last post by:
Hi When developing vb.bet winform apps bound to sql server datasource, is it preferable to use SELECTs or stored procedure to read and write data from/to SQL Server? Why? Thanks Regards
28
by: mooreit | last post by:
The purpose for my questions is accessing these technologies from applications. I develop both applications and databases. Working with Microsoft C#.NET and Microsoft SQL Server 2000 Production and...
7
by: Siv | last post by:
Hi, I have a stored procedure that I want to execute and then wait in a loop showing a timer whilst it completes and then carry on once I get notification that it has completed. The main reason...
11
by: peter | last post by:
I am trying to get a SQL stored procedure to use user maintained MQT implicitly which raises questions on when they are used or not used. In theory you would expect the stored procedure to pick up...
0
linyimin
by: linyimin | last post by:
Spring Startup Analyzer generates an interactive Spring application startup report that lets you understand what contributes to the application startup time and helps to optimize it. Support for...
0
by: kcodez | last post by:
As a H5 game development enthusiast, I recently wrote a very interesting little game - Toy Claw ((http://claw.kjeek.com/))。Here I will summarize and share the development experience here, and hope it...
2
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Sept 2023 starting at 18:00 UK time (6PM UTC+1) and finishing at about 19:15 (7.15PM) The start time is equivalent to 19:00 (7PM) in Central...
0
by: Taofi | last post by:
I try to insert a new record but the error message says the number of query names and destination fields are not the same This are my field names ID, Budgeted, Actual, Status and Differences ...
14
DJRhino1175
by: DJRhino1175 | last post by:
When I run this code I get an error, its Run-time error# 424 Object required...This is my first attempt at doing something like this. I test the entire code and it worked until I added this - If...
0
by: Rina0 | last post by:
I am looking for a Python code to find the longest common subsequence of two strings. I found this blog post that describes the length of longest common subsequence problem and provides a solution in...
5
by: DJRhino | last post by:
Private Sub CboDrawingID_BeforeUpdate(Cancel As Integer) If = 310029923 Or 310030138 Or 310030152 Or 310030346 Or 310030348 Or _ 310030356 Or 310030359 Or 310030362 Or...
0
by: lllomh | last post by:
How does React native implement an English player?
0
by: Mushico | last post by:
How to calculate date of retirement from date of birth

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.