|
Lines 476-482
sub AddItemsToImportBiblio {
Link Here
|
| 476 |
VALUES (?, ?, ?)"); |
476 |
VALUES (?, ?, ?)"); |
| 477 |
$sth->bind_param(1, $import_record_id); |
477 |
$sth->bind_param(1, $import_record_id); |
| 478 |
$sth->bind_param(2, 'staged'); |
478 |
$sth->bind_param(2, 'staged'); |
| 479 |
$sth->bind_param(3, $item_marc->as_xml()); |
479 |
$sth->bind_param(3, $item_marc->as_xml("USMARC")); |
| 480 |
$sth->execute(); |
480 |
$sth->execute(); |
| 481 |
push @import_items_ids, $dbh->{'mysql_insertid'}; |
481 |
push @import_items_ids, $dbh->{'mysql_insertid'}; |
| 482 |
$sth->finish(); |
482 |
$sth->finish(); |
| 483 |
- |
|
|