/[webpac2]/trunk/vhost/koha/marc.pl
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Annotation of /trunk/vhost/koha/marc.pl

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1239 - (hide annotations)
Sun Jul 12 15:10:23 2009 UTC (14 years, 10 months ago) by dpavlin
File MIME type: text/plain
File size: 415 byte(s)
example search for Koha database

1 dpavlin 1239 search( 'author',
2     join_with(' ; ',
3     rec('100','a'),
4     rec('700','a')
5     )
6     );
7     search( 'title',
8     join_with(' ',
9     rec('245','a'),
10     rec('245','b'),
11     rec('245','c'),
12     )
13     );
14     search( 'isbn', rec('020','a') );
15     search( 'impressum',
16     join_with(' ',
17     rec('260','a'),
18     rec('260','b'),
19     rec('260','c'),
20     )
21     );
22     search( 'keywords',
23     join_with(' ; ',
24     rec('653','a')
25     )
26     );
27     search( 'biblionumber',
28     rec('999','c')
29     );

  ViewVC Help
Powered by ViewVC 1.1.26