Hi,
Why don't you split db file (in c or php) into several small file, like one file for oracle, one for mysql, etc ?
I think that the support should be simplified.
Thanks
James Wells
26-01-2007, 17:14
Greetings,
Why don't you split db file (in c or php) into several small file, like one file for oracle, one for mysql, etc ?
I think that the support should be simplified.
Actually, this would make it a bit more difficult to support. At present, when support for a new DB is added, the changes are made within the current DB functions. By doing this, we are able to ensure that the function names, arguments remain identical regardless of the DB being used. By seperating these functions, would increase the opportunities for function name / argument mismatches, which would cause more issues than it would resolve.