Click here to Skip to main content
15,886,199 members
Home / Discussions / Database
   

Database

 
AnswerRe: add stored procedures .sql to database Pin
Luis Alonso Ramos6-Oct-05 18:45
Luis Alonso Ramos6-Oct-05 18:45 
QuestionUsing SqlConnection without Time out Pin
thainam3-Oct-05 23:13
thainam3-Oct-05 23:13 
AnswerRe: Using SqlConnection without Time out Pin
Colin Angus Mackay4-Oct-05 1:19
Colin Angus Mackay4-Oct-05 1:19 
QuestionSQL SERVER Pin
Tran Ngoc Minh3-Oct-05 18:15
Tran Ngoc Minh3-Oct-05 18:15 
AnswerRe: SQL SERVER Pin
Colin Angus Mackay4-Oct-05 1:25
Colin Angus Mackay4-Oct-05 1:25 
QuestionStore procedure access in c++ Pin
Anonymous3-Oct-05 17:14
Anonymous3-Oct-05 17:14 
QuestionMultiple Selects in SP Pin
Russell Jones3-Oct-05 6:05
Russell Jones3-Oct-05 6:05 
AnswerRe: Multiple Selects in SP Pin
afronaut3-Oct-05 6:45
afronaut3-Oct-05 6:45 
Not too sure if this will help but when I have a structure like that I use a reader. I can then write the following:

if(r.Read()){
// they are valid, get user info
if(r.NextResultSet()){
while(r.Read()){
// return additional data for that person
}
}
}
r.close();



*->>Always working on my game, teach me
*->>something new.
cout << "dav1d\n";

-- modified at 12:45 Monday 3rd October, 2005
GeneralRe: Multiple Selects in SP Pin
Anonymous3-Oct-05 6:54
Anonymous3-Oct-05 6:54 
GeneralRe: Multiple Selects in SP Pin
Michael Potter3-Oct-05 11:57
Michael Potter3-Oct-05 11:57 
QuestionQuery question Pin
afronaut3-Oct-05 5:25
afronaut3-Oct-05 5:25 
AnswerRe: Query question Pin
-Dr_X-3-Oct-05 5:38
-Dr_X-3-Oct-05 5:38 
GeneralRe: Query question Pin
miah alom3-Oct-05 6:55
miah alom3-Oct-05 6:55 
GeneralRe: Query question Pin
Johny Ng3-Oct-05 9:12
Johny Ng3-Oct-05 9:12 
GeneralRe: Query question Pin
miah alom3-Oct-05 9:51
miah alom3-Oct-05 9:51 
GeneralRe: Query question Pin
Johny Ng3-Oct-05 11:35
Johny Ng3-Oct-05 11:35 
GeneralRe: Query question Pin
miah alom3-Oct-05 11:37
miah alom3-Oct-05 11:37 
GeneralRe: Query question Pin
Anonymous4-Oct-05 4:13
Anonymous4-Oct-05 4:13 
AnswerRe: Query question Pin
Anonymous4-Oct-05 19:09
Anonymous4-Oct-05 19:09 
QuestionUpdating multiple tables in Data Set Pin
Member 21844333-Oct-05 1:08
Member 21844333-Oct-05 1:08 
QuestionSQL : how to change the data type of a column Pin
Jerome Conus3-Oct-05 0:55
Jerome Conus3-Oct-05 0:55 
AnswerRe: SQL : how to change the data type of a column Pin
afronaut3-Oct-05 6:14
afronaut3-Oct-05 6:14 
QuestionWhen using localhost SQL Server does not exist ...error Pin
Anonymous2-Oct-05 11:23
Anonymous2-Oct-05 11:23 
AnswerRe: When using localhost SQL Server does not exist ...error Pin
Colin Angus Mackay2-Oct-05 12:38
Colin Angus Mackay2-Oct-05 12:38 
GeneralRe: When using localhost SQL Server does not exist ...error Pin
Anonymous2-Oct-05 15:16
Anonymous2-Oct-05 15:16 

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.