Click here to Skip to main content
15,903,201 members
Home / Discussions / C#
   

C#

 
GeneralRe: Delay in Webservice Functions Pin
c0ax_lx7-Jan-08 4:07
c0ax_lx7-Jan-08 4:07 
Generalrunning the Procedure Pin
tasumisra6-Jan-08 23:03
tasumisra6-Jan-08 23:03 
GeneralRe: running the Procedure Pin
Mircea Puiu6-Jan-08 23:47
Mircea Puiu6-Jan-08 23:47 
GeneralRe: running the Procedure Pin
J4amieC6-Jan-08 23:50
J4amieC6-Jan-08 23:50 
GeneralRe: running the Procedure Pin
Mircea Puiu6-Jan-08 23:56
Mircea Puiu6-Jan-08 23:56 
GeneralRe: running the Procedure Pin
J4amieC6-Jan-08 23:49
J4amieC6-Jan-08 23:49 
GeneralRe: running the Procedure Pin
tasumisra7-Jan-08 0:05
tasumisra7-Jan-08 0:05 
GeneralRe: running the Procedure Pin
Steppo7-Jan-08 0:44
Steppo7-Jan-08 0:44 
You have to use the cmd.ExecuteReader() and not the cmd.ExecuteNonQuery() - the last method return an int of numbers of rows affected, usually used with insert query or update query (also useful with select count...).

Try this:

SqlDataReader reader = cmd.ExecuteReader();
reader.Close();

string result = reader["ResultRS"].ToString();
GeneralRe: running the Procedure Pin
tasumisra7-Jan-08 1:22
tasumisra7-Jan-08 1:22 
GeneralRe: running the Procedure [modified] Pin
Steppo7-Jan-08 2:30
Steppo7-Jan-08 2:30 
QuestionDeleting from database Pin
Derick Magagula6-Jan-08 22:56
Derick Magagula6-Jan-08 22:56 
GeneralRe: Deleting from database Pin
N a v a n e e t h6-Jan-08 23:05
N a v a n e e t h6-Jan-08 23:05 
GeneralLast Day of Current Month Pin
sami_pak6-Jan-08 21:26
sami_pak6-Jan-08 21:26 
GeneralRe: Last Day of Current Month Pin
N a v a n e e t h6-Jan-08 21:45
N a v a n e e t h6-Jan-08 21:45 
GeneralWrong forum. Pin
Pete O'Hanlon6-Jan-08 22:37
mvePete O'Hanlon6-Jan-08 22:37 
AnswerRe: Last Day of Current Month Pin
GuyThiebaut6-Jan-08 23:10
professionalGuyThiebaut6-Jan-08 23:10 
GeneralAny query about northwind? [modified] Pin
omegazafer6-Jan-08 21:13
omegazafer6-Jan-08 21:13 
GeneralWrong forum Pin
Pete O'Hanlon6-Jan-08 22:47
mvePete O'Hanlon6-Jan-08 22:47 
GeneralRe: Wrong forum Pin
omegazafer6-Jan-08 23:05
omegazafer6-Jan-08 23:05 
GeneralRe: Wrong forum Pin
Pete O'Hanlon7-Jan-08 1:18
mvePete O'Hanlon7-Jan-08 1:18 
GeneralInsert TXT data into SQL database Pin
minniemooo6-Jan-08 21:04
minniemooo6-Jan-08 21:04 
GeneralRe: Insert TXT data into SQL database Pin
N a v a n e e t h6-Jan-08 21:25
N a v a n e e t h6-Jan-08 21:25 
GeneralRe: Insert TXT data into SQL database Pin
J4amieC6-Jan-08 22:20
J4amieC6-Jan-08 22:20 
Generallambda or anonymous delegate [modified] Pin
Roger Alsing6-Jan-08 20:55
Roger Alsing6-Jan-08 20:55 
GeneralGenerating Reports Pin
sami_pak6-Jan-08 20:26
sami_pak6-Jan-08 20:26 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.