The rogue-wave tag has no wiki summary.
1
vote
2answers
60 views
difference between a regular “string” class “rwcstring” class
Can anyone please let me know the exact difference between the regular string class and the roguewave's rwcstring class. The codes in my project extensively use the rwcstring class. My doubt is if ...
0
votes
0answers
52 views
i/ostream ambigous symbol rogue wave
I have C++ code with RogueWave which was compiled in IRIX 6.5 OS (UNIX) and I need to convert it such that it can compiled in Visual Studio 2010.
However there is a problem with the stream objects - ...
1
vote
1answer
51 views
Strange issue using RWTValHashMap with g++ on Linux
I am writing a simple test program on Linux system by using g++ 4.3 and Rogue Wave library. The problem that I am facing here is that the following codes can be compiled but it would pop up a ...
0
votes
3answers
105 views
Initializing a set iterator in C++
I just upgraded a third party library called RogueWave which I use for database functions.
But, I am getting a really silly compile error, and I am not quite sure what it is complaining about:
...
0
votes
2answers
242 views
RWCString is dropping core
In our code we use RWCString instead of std::string. One of the functions is dropping core and the stacktrace points to RWCString.
The function looks like this.
bool Eligible(const Message& ...
0
votes
1answer
289 views
How to get the linux thread id from RWThreadId?
In the RW documentation it advises to use rwThreadHash to get the threadId for debugging but that still doesn't match the actual linux thread id on a thread. Any idea how to get it (not necessarily in ...
1
vote
1answer
171 views
Why does RWDBManager::database need shared library name?
I am using Roguewave library to connect to Sybase database from C++. I understand that database object is constructed as:
RWDBManager::database("accessLib", "", "", "", "", "XA=lrm_name");
...
0
votes
1answer
872 views
Implicit conversion between RWCString and const char *
RWCString str = "Y";
str.append("ES");
if("YES" == str)
cout << "YES == str" << endl;
if(str == "YES")
cout << "str == YES" << endl;
How does the implicit conversion ...
0
votes
1answer
104 views
RWDBReader Cannot read more than 255 characters
We're using Rogue Wave tools for our database operations, writing in C++. When we try to read the results of a simple SQL query, like:
RWDBResult resParam = VimerParamTblSlc.execute (pConn);
...
1
vote
4answers
731 views
core dump segmentation fault with C++
I am a newbie to the C/CPP application and analysing an issue with a piece of C/CPP code. I came across a Segmentation Fault error and I am not to identify the root cause of the segmentation fault.
...
1
vote
2answers
314 views
RWTime is displaying localtime+1
Why RWTime is giving 1 hour more
#include <rw/rwtime.h>
#include <rw/rwdate.h>
#include <rw/rstream.h>
main(){
RWTime t; // Current time
RWTime d(RWTime::beginDST(1990, ...
1
vote
0answers
28 views
Example needed for ADW using nested frames in StingRay
I have modified the AdvSDI example (included in the StingRay distribution disk) and have removed all but two dockable nodes that represent floatable areas of information. One is initially docked ...
0
votes
1answer
69 views
example of using StingRay SECSplitterBase
I am interested in a code fragment that demonstrates how to use the Layout Factory and SECSplitter Base (both from StingRay) to deliver a splitter window inside another splitter window.
1
vote
2answers
553 views
How do I abstract away from using RogueWave in legacy code?
I have been tasked with removing RogueWave components from a legacy C++ codebase. To do so, I am attempting to build wrappers around the existing components, make sure that the code functions the ...
3
votes
1answer
149 views
How to get a nice view of data structure in debugger?
I am debugging a Visual C++ project that uses Rogue Wave a lot. I would like to see content of RW containers easily, i.e. i want to see list elements instead of this:
What are my options? Can ...