Search:
Type: Posts; User: voidflux
Search :
Search took 0.01 seconds.
January 16th, 2008 11:07 PM
when you say CString do you mean <string> or is there an actual library called CString?
January 16th, 2008 07:46 PM
It seems I don't need to do that at all but the problem I'm having now is how do I delete the last character of this string without an overflow?
I'm telling it to delete the o off hello, and its...
January 16th, 2008 06:13 PM
Hello everyone, I havn't been doing C++ in awhile but I need to freshen up fast!
I'm doing the following,
I'm trying to see if somthing in string2 is in string1,
for example string2 is "eo"...
November 3rd, 2007 02:12 AM
October 7th, 2007 06:01 PM
Thanks for the responces!
PeeJAvery,
I understand that, and I enjoy testing and debugging but I don't want my only job to be just Test.
At IBM, there are so many people, there are 3 levels...
October 7th, 2007 12:21 AM
Hello everyone.
I'm still in school and currently co-oping with IBM and I have been for 7 months.
I would really like a job where I'm coding all the time. The title of my current job is...
October 2nd, 2007 12:59 PM
Thanks guys! Very nice explanation :)
September 30th, 2007 07:09 AM
Hello everyone.
I was confused on what makes a many-to-one relationship. For instance I modeled this .ddl db2 code in Rational Software Architect and its showing its a many to 1 relationship based...
September 12th, 2007 09:07 AM
hah I remember doing this program years ago!
Probably same book too,
main_savitch_2C namespace.
August 9th, 2007 02:16 PM
Thanks for the help again,
I do like your method alot better it seems cleaner as well.
I'm not sure if I'm logically connecting these tables correctly or not...
This is what I think all the...
August 9th, 2007 11:42 AM
Hello everyone! having alittle issues here...
mysql> SELECT
-> ncim.entity.entityId, ncim.entity.mainNodeEntityId,
-> ncim.entity.entityName, ncim.entity.domainMgrId,
->...
August 7th, 2007 11:22 PM
Awesome! worked like a charm! thanks!!
August 7th, 2007 03:58 PM
I posted 2 versions of the code, one a straight paste from this guy into a text file then in the mysql console and another version with the quotes, that were wrong like you said, i was thinking it...
August 7th, 2007 03:37 PM
Thanks so much that made it really clear but i'm not sure why i'm getting this error, the syntax looks correct....
I'm using mysql 5.0
mysql> SELECT
-> *
-> FROM ncim.entity AS...
August 7th, 2007 01:35 PM
Hello everyone I'm having issues converting this statement into an inner join statement.
The statement I wrote works fine but isn't up to date with standards where they prefer inner joins rather...
Thanks for the responce! Now i'm lost on how I would get data from 4 of the tables.
I'm trying to get all the data that link these tables together. They all have forgien keys in common so I...
Hello everyone,
I'm confused on this part of the SQL code of the connects table below:
CONSTRAINT `connects_entity_fk1` FOREIGN KEY (`aEndEntityId`) REFERENCES `entity` (`entityId`) ON...
Thanks for the help! With your explanation I figured it out!
My intial code was quite messed up I'm not sure what I was thinking. What I wanted it to do was once the database was already...
I'm having an issue deleting from a map where the KEY is the Serial data member and i'm trying to delete where the KEY is somthing and the PackID is equal to a value.
here's me trying to do it:
...
Hello everyone i'm using java and I'm having issues figuring out how many bytes are sent/recieved from a socket.
I'm sending a string from a client socket to a server.
I can't find any built in...
ahh i see, thanks for the clarification :)
n/m I got it, for some reason this check screwed it:
if(in.read() == -1)
{
System.out.println("Connection closed by client.");
break;
}
Hello everyone.
For some reason when I send my first string through the socket, everything works fine. But after that Its cutting off the first 2 or 3 characters of the string and I have no idea...
Hello everyone,
I'm new to network programming and I was just wondering if I could get some clarification and some advice on networking.
Right now I have a serversocket program that accepts a...
Click Here to Expand Forum to Full Width