Re: registerDriver()
Oh...
So the only way to get this to work would be to install an actual MySQL database on my own computer... Or if my partner gets Sybase working...
Thanks a lot for your help. I learned a lot about how databases programming actually works the past few days.
I do, however, have one last question... When creating and testing queries, a few of our queries were rejected entirely and I'm curious as to why. They all have SELECT nested inside a WHERE, which the professor said is correct for SQL. Here's an example:
SELECT Id
FROM Item
WHERE Type = (
SELECT Type
FROM Item
WHERE (Id =
SELECT ID
FROM Purchased
WHERE (BuyerUN = ?)
)
)
(? would be replaced with a variable)
The above should display all item's IDs that have the same Type.
Subject
Written By
Posted
Re: registerDriver()
May 10, 2005 02:05PM
Sorry, you can't reply to this topic. It has been closed.
Content reproduced on this site is the property of the respective copyright holders.
It is not reviewed in advance by Oracle and does not necessarily represent the opinion
of Oracle or any other party.