|
Lines 467-473
sub AddItemsToImportBiblio {
Link Here
|
| 467 |
VALUES (?, ?, ?)"); |
467 |
VALUES (?, ?, ?)"); |
| 468 |
$sth->bind_param(1, $import_record_id); |
468 |
$sth->bind_param(1, $import_record_id); |
| 469 |
$sth->bind_param(2, 'staged'); |
469 |
$sth->bind_param(2, 'staged'); |
| 470 |
$sth->bind_param(3, $item_marc->as_xml()); |
470 |
$sth->bind_param(3, $item_marc->as_xml("USMARC")); |
| 471 |
$sth->execute(); |
471 |
$sth->execute(); |
| 472 |
push @import_items_ids, $dbh->{'mysql_insertid'}; |
472 |
push @import_items_ids, $dbh->{'mysql_insertid'}; |
| 473 |
$sth->finish(); |
473 |
$sth->finish(); |
| 474 |
- |
|
|