![]() |
|
|
|
#1 |
|
Dear all,
question 1: IF (NOT EXISTS(SELECT * FROM table) RETURN 1 ELSE RETURN 0 how to get back the return value from stored procedure from ado.net 2.0 i try Dim result As Boolean = command.ExecuteScalar but can't get back question 2: what is the meaning - using..... question 3: why i create a stored procedure in sql server 2005, it need to save the file into somewhere, how to store into the database? =?Utf-8?B?a2Vu?= |
|
|
|
|
#2 |
|
Posts: n/a
|
> how to get back the return value from stored procedure from ado.net 2.0
To get the return value, add a parameter to the Command with ParameterDirection.ReturnValue. > what is the meaning - using..... It depends on how you're "using" it. It can mean either the same thing as VB.Net "Imports" - that is, it provides a namespace hierarchy for your code so you don't have to retype it all the time: using System.Web.UI.WebControls; Or, it can be used with a statement block to ensure that a disposable class instance is disposed: using (FileStream fs = new FileStream(FileName, FileMode.Open, FileAccess.Read)) { .... } -- HTH, Kevin Spencer Microsoft MVP ..Net Developer Who is Mighty Abbott? A twin turret scalawag. "ken" <> wrote in message news:60EB80A6-16CC-4734-A620-... > Dear all, > question 1: > IF (NOT EXISTS(SELECT * FROM table) > RETURN 1 > ELSE > RETURN 0 > > how to get back the return value from stored procedure from ado.net 2.0 > i try Dim result As Boolean = command.ExecuteScalar > but can't get back > > > question 2: > what is the meaning - using..... > > question 3: > why i create a stored procedure in sql server 2005, it need to save the > file > into somewhere, how to store into the database? > Kevin Spencer |
|
![]() |
| Thread Tools | Search this Thread |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Re: Good morning or good evening depending upon your location. I want to ask you the most important question of your life. Your joy or sorrow for all eternity depends upon your answer. The question is: Are you saved? It is not a question of how good | God | DVD Video | 3 | 04-25-2005 04:19 PM |
| Re: Good morning or good evening depending upon your location. I want to ask you the most important question of your life. Your joy or sorrow for all eternity depends upon your answer. The question is: Are you saved? It is not a question of how good | Filthy Mcnasty | DVD Video | 0 | 04-25-2005 04:29 AM |
| Netflix Heavy-User / Etiquette question | Squareness Wafer | DVD Video | 3 | 05-22-2004 03:32 AM |
| Netflix Heavy-User / Etiquette question | Squareness Wafer | DVD Video | 3 | 05-13-2004 08:20 PM |
| Styx - Return to Paradise audio question | Johnnyboy | DVD Video | 2 | 04-13-2004 09:34 PM |