chris_huh wrote:
> Is it possible to have 'folders' within a mysql database that holds
> separate tables. I want to be able to have several sites from
> subdomains to access a single database but each site will need to
> access tables of the same name.
> Is the only way to do this to have a different database for each, as
> that would start to get expensive.
>
> Thanks
>
Chris,
No, sorry, MySQL doesn't support different schemas (as some other
databases do). You need to have unique tables in your database.
How about prefacing each table with some type of info, i.e. a subdomain
name, then concatenating the subdomain name to your table name before
you make the request?
--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstucklex@attglobal.net
==================