Lines 2323-2328
CREATE TABLE `z3950servers` ( -- connection information for the Z39.50 targets u
Link Here
|
2323 |
`sru_options` varchar(255) default NULL, -- options like sru=get, sru_version=1.1; will be passed to the server via ZOOM |
2323 |
`sru_options` varchar(255) default NULL, -- options like sru=get, sru_version=1.1; will be passed to the server via ZOOM |
2324 |
`sru_fields` LONGTEXT default NULL, -- contains the mapping between the Z3950 search fields and the specific SRU server indexes |
2324 |
`sru_fields` LONGTEXT default NULL, -- contains the mapping between the Z3950 search fields and the specific SRU server indexes |
2325 |
`add_xslt` LONGTEXT default NULL, -- zero or more paths to XSLT files to be processed on the search results |
2325 |
`add_xslt` LONGTEXT default NULL, -- zero or more paths to XSLT files to be processed on the search results |
|
|
2326 |
`attributes` VARCHAR(255) default NULL, -- additional attributes passed to PQF queries |
2326 |
PRIMARY KEY (`id`) |
2327 |
PRIMARY KEY (`id`) |
2327 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; |
2328 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; |
2328 |
|
2329 |
|
2329 |
- |
|
|