Re: Using diferent database schemas
How about implementing it like this?
if schemaObjectPrefix.hasADot
dbSchema = everythingUpToAndIncludingTheFirst(".")
schemaObjectPrefix = everythingFromTheFirstUntilTheEnd(".")
schemaObjectPrefix.escapeTheCharacters()
else
continueToDoWhatIsDoingNow
end
That way the backward compatibility is assured.
It is somewhat a ugly solution, thus...