https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=25603 --- Comment #15 from David Cook <dcook@prosentient.com.au> --- (In reply to Mark Hofstetter from comment #13)
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)
I'm sorry I still don't understand. Are you changing your OAI-PMH server code, or is this a custom OAI-PMH server, or something else? (In reply to Mark Hofstetter from comment #14)
if that was the question: it does not impact importing (I doubt you could measure the difference)
Magnus said something about importing but I did not understand. -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug.