https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=25603
--- Comment #13 from Mark Hofstetter <[email protected]> --- it helps insofar as you can address a record as quickly (databasewise) with the controlnumber column as with the biblionumber so for OAI you can easily a quickly map controlnumber to biblionumber and you are good to go (changing identifer url etc) but in the simplest case for our customer this works: my ($biblionumber) = $dbh->selectrow_array('select biblionumber from biblio_metadata where controlnumber = ?', {}, $controlnumber); (with error handling etc) -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. _______________________________________________ Koha-bugs mailing list [email protected] https://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/
