Click here to Skip to main content
15,901,205 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: overloading across scopes Pin
4apai24-Feb-05 0:19
4apai24-Feb-05 0:19 
GeneralRe: overloading across scopes Pin
vikramlinux24-Feb-05 0:29
vikramlinux24-Feb-05 0:29 
GeneralRe: overloading across scopes Pin
vishalmore24-Feb-05 1:08
vishalmore24-Feb-05 1:08 
GeneralRe: overloading across scopes Pin
Chris Meech24-Feb-05 5:33
Chris Meech24-Feb-05 5:33 
GeneralRe: overloading across scopes Pin
vikramlinux24-Feb-05 17:13
vikramlinux24-Feb-05 17:13 
GeneralRe: overloading across scopes Pin
Chris Meech25-Feb-05 1:51
Chris Meech25-Feb-05 1:51 
QuestionHow to install VC++ 7.1 only using VS.net 2003 package Pin
thomas yang23-Feb-05 16:07
thomas yang23-Feb-05 16:07 
Generalshockwave flash Pin
vc-programmer-23-Feb-05 15:48
vc-programmer-23-Feb-05 15:48 
GeneralRe: shockwave flash Pin
Basavaraj P.Umadi23-Feb-05 17:04
Basavaraj P.Umadi23-Feb-05 17:04 
Generalabout windows media sdk visualization .... Pin
teremin23-Feb-05 13:43
teremin23-Feb-05 13:43 
GeneralUpdating edit box content in a DialogBar Pin
Will115723-Feb-05 12:01
sussWill115723-Feb-05 12:01 
GeneralRe: Updating edit box content in a DialogBar Pin
Ravi Bhavnani24-Feb-05 3:11
professionalRavi Bhavnani24-Feb-05 3:11 
GeneralRe: Updating edit box content in a DialogBar Pin
Anonymous25-Feb-05 17:18
Anonymous25-Feb-05 17:18 
GeneralWinLogon Notification Package Pin
Arthur D23-Feb-05 9:11
sussArthur D23-Feb-05 9:11 
GeneralRe: WinLogon Notification Package Pin
ThatsAlok23-Feb-05 17:21
ThatsAlok23-Feb-05 17:21 
GeneralAdding strings to the string table @ runtime... Pin
Nitron23-Feb-05 7:50
Nitron23-Feb-05 7:50 
GeneralRe: Adding strings to the string table @ runtime... Pin
David Crow23-Feb-05 10:16
David Crow23-Feb-05 10:16 
GeneralRe: Adding strings to the string table @ runtime... Pin
Michael Dunn23-Feb-05 12:46
sitebuilderMichael Dunn23-Feb-05 12:46 
GeneralRe: Adding strings to the string table @ runtime... Pin
Blake Miller24-Feb-05 6:05
Blake Miller24-Feb-05 6:05 
GeneralRe: Adding strings to the string table @ runtime... Pin
Michael Dunn24-Feb-05 6:11
sitebuilderMichael Dunn24-Feb-05 6:11 
GeneralInactive Programs Pin
Pescador3423-Feb-05 7:10
Pescador3423-Feb-05 7:10 
Hello. Thiss is my first post. :->
The problem...
I'm programing a service that connect to one DB in Oracle,
using threads to with request.For wainting for a new request
i use

while (_this->running) {
db_connection = new DBConnection(param1,param2,param3);

then i connect...

try {
db_connection->DBConnect();
TRACE("Connected to DB.\n");
} catch(int) {
(ERROR)
}

Everything ok...
then read data...
try {
db_connection->StartFeeds();
TRACE("StartFeeds OK.\n"); ( NEVER Happens Frown | :(
} catch(int) {
TRACE("StartFeeds Not OK.\n");
delete db_connection;
Sleep(2000);
continue;
}
}

The problem, i use TOAD to see the program run... and i see inactive programs grow and grow...
Can you help me?

Another question,

In Startfeeds i use

static text sqlstmt[] = "BEGIN :status := pck_oracle.start_feeds; END;";

but pck_oracle have

I_QUEUE_NAME VARCHAR2 (input)
,O_SUCESS OUT NUMBER (output)
,O_SUCESS_MSG OUT VARCHAR2 (output)

how do i pass the input field and recive the two output fields?
Can you explain me this?

Thanks a lot for your pacience Wink | ;)
GeneralPlease, help with Parallel Port Pin
mario_o8223-Feb-05 6:26
mario_o8223-Feb-05 6:26 
GeneralRe: Please, help with Parallel Port Pin
Budric B.23-Feb-05 7:43
Budric B.23-Feb-05 7:43 
GeneralRe: Please, help with Parallel Port Pin
mario_o8223-Feb-05 9:40
mario_o8223-Feb-05 9:40 
GeneralRe: Please, help with Parallel Port Pin
Budric B.23-Feb-05 9:56
Budric B.23-Feb-05 9:56 

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.