Forum: MS SQL Sep 18th, 2009 |
| Replies: 5 Views: 585 Well, I ended up handling it in my application code. Anyway, it works now. |
Forum: MS SQL Sep 18th, 2009 |
| Replies: 5 Views: 585 Hi again Scott,
Someone has mentioned to me something about "recursive CTE" (which I do not know about). So im going to read about it first. But if that won't work for me, I think I might go with... |
Forum: MS SQL Sep 18th, 2009 |
| Replies: 5 Views: 585 Hi Scott,
Really I agree with you. I also do not want to use a trigger and instead just relate the ID to the ParentID but the problem is when I relate the ID to the ParentID (by creating a new... |
Forum: MS SQL Sep 18th, 2009 |
| Replies: 5 Views: 585 I have this table (Account) containing fields ID and ParentID. ParentID's value is the ID of the parent account for that account. Now, I set up a trigger that on delete of the parent, all children... |
Forum: Database Design Jun 16th, 2009 |
| Replies: 2 Views: 534 Hi,
I just would like to ask if there is a benefit regarding this type of relationship between tables. Say I have a table named Student. I usually relate a table (one-to-one) to extend it. What I... |
Forum: C++ Jun 11th, 2009 |
| Replies: 16 Views: 738 Thanks a lot to everybody expecially Narue! |
Forum: C++ Jun 11th, 2009 |
| Replies: 16 Views: 738 Sorry, something bugged me again. What do you mean about "ASCII is technically a 7-bit character set, so it can only hold 128 characters portably"? What do you mean about 7-bit being portable and... |
Forum: C++ Jun 11th, 2009 |
| Replies: 16 Views: 738 Hi Narue,
I'm sure tux4life was just trying to help. Anyway, good thing I decided that I wasn't satisfied with what i've learn and try to open a topic again and luckily, you cleared up ALL the... |
Forum: C++ Jun 11th, 2009 |
| Replies: 16 Views: 738 |
Forum: C++ Jun 11th, 2009 |
| Replies: 16 Views: 738 Hi tux4life,
Thanks for the explanation. I just want to clear some part. From the text i'm reading:
"A byte usually means an 8-bit unit of memory. Byte in this sense is the unit of... |
Forum: C++ Jun 11th, 2009 |
| Replies: 16 Views: 738 I've read that the bits in a byte (in c++) are implementation or system dependent. What does that mean? Does it mean implementation of c++ or the processor architecture or some other thing?
And... |
Forum: C++ Jun 9th, 2009 |
| Replies: 7 Views: 461 Thank you all for the responses. It's clear now especially siddhant3s' explanation. Thanks again! |
Forum: C++ Jun 9th, 2009 |
| Replies: 7 Views: 461 vmanes, siddhant3s:
Thanks so much for the explanation. That really cleared it up (especially the abstraction part). The only thing that is left unclear to me is the mouse/trackball part.
It... |
Forum: C++ Jun 9th, 2009 |
| Replies: 7 Views: 461 Hi, im just beginning c++ and been reading regarding cin and cout. After reading the chapter, I just got curious what acually a stream is. It is said in some as a series of characters. In a site:
... |