http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=7365
--- Comment #14 from Marc Balmer <[email protected]> --- SHOW COLUMNS FROM is only one example of a MySQLism, that we merely used to demonstrate the technique being used. What we - and we do it on purpose - is to not change the way how the database is accessed, but the SQL being used. For SHOW COLUMNS FROM there is a function in DBH, but did you check what it returns what the surrounding code in Koha expects? Well, we did check that and our goals was to minimally invasive, that is why we only change the way the SQL is generated. How will you address idoms for which no DBH equivalent, no standard SQL equivalent exists, i.e. where different SQL HAS to be used for MySQL or PostgreSQL? Our solution adresses exactly this problem. It is small, overseeable, and works. -- You are receiving this mail because: You are watching all bug changes. _______________________________________________ Koha-bugs mailing list [email protected] http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs website : http://www.koha-community.org/ git : http://git.koha-community.org/ bugs : http://bugs.koha-community.org/
