Forum: Database Design Jan 20th, 2009 |
| Replies: 5 Views: 810 Hi, I am back again.
Because of "A French vocable got one or more English vocable equivalents and vice versa." there exists a many-to-many relationship between both entities. Therefore this is the... |
Forum: MS SQL Jul 20th, 2008 |
| Replies: 3 Views: 2,242 Hello dmmckelv,
When Edgar Frank Codd invited relational databases his primary idea was to found it on
logic algebra and set theory. The rows of relational tables (aka relations) are sets.... |
Forum: MySQL Jul 13th, 2008 |
| Replies: 4 Views: 2,626 Hi jakesee
For better handling you need one root only. This can easily be done by defining a master root where all other roots can be formally connected to. Only this master root will not have a... |
Forum: MySQL Jun 27th, 2008 |
| Replies: 4 Views: 6,170 Hi tuse
How are you?
Well, if you had access to grant table mysql.user you would have also been able to
SELECT User, Password FROM mysql.user. You got it? Yes, you would be able to hack... |
Forum: C++ Jun 22nd, 2008 |
| Replies: 8 Views: 837 Well dear Superfat, the most effective solution for you problem has already been given by vijayan121. Unfortunately you aren't able to understand his fine function. So GOD's advice should be... |
Forum: Database Design Jun 16th, 2008 |
| Replies: 4 Views: 3,373 Sure there are country codes standardized by ISO 3166, look here:
Some codes from ISO 3166
#
Updated by the RIPE Network Coordination Centre.
#
Source: ISO 3166 Maintenance Agency
#
Latest... |
Forum: C++ Jun 16th, 2008 |
| Replies: 12 Views: 2,596 Hi niek_e
You are right, I have overlooked the semicolon at he far right.
Intuitively I also would put a semicolon at left side if for-init statement is off. But the ISO standard tells the... |
Forum: C++ Jun 13th, 2008 |
| Replies: 3 Views: 3,426 |
Forum: MySQL Jun 6th, 2008 |
| Replies: 10 Views: 4,664 Hello kutta_vin,
well, "forgotten to mention" has created some superfluous work. However it is rather simple to get the same result from your modified tables. Supposing a table act2(AccountId,... |
Forum: MS SQL Jun 4th, 2008 |
| Replies: 9 Views: 2,329 Hi HB25,
Your first select should look like:
select c.CustomerID, c.Surname, c.Address, c.Town, c.Postcode,
o.OrderID, o.Date,
i.ProductID, i.Qty, p.Description from Customer c
join... |
Forum: C++ May 22nd, 2008 |
| Replies: 15 Views: 1,467 Possibly, you don't know what you should change in your function to get it function correctly. These are your problems in binaryAdd of posting #7:
1. Serious problem (where you begin when you are... |
Forum: C May 20th, 2008 |
| Replies: 9 Views: 2,411 |
Forum: C++ Apr 17th, 2008 |
| Replies: 11 Views: 1,512 ofstream is for output, which can be combined with fstream::out | fstream::app // for append
but not with fstream::in | fstream::out
if you want to do both, use fstream.
you may have a look at ... |