<<

NAME

Koha::Schema::Result::Z3950server

TABLE: z3950servers

ACCESSORS

id

  data_type: 'integer'
  is_auto_increment: 1
  is_nullable: 0

unique identifier assigned by Koha

host

  data_type: 'varchar'
  is_nullable: 0
  size: 255

target's host name

port

  data_type: 'integer'
  is_nullable: 1

port number used to connect to target

db

  data_type: 'varchar'
  is_nullable: 1
  size: 255

target's database name

userid

  data_type: 'varchar'
  is_nullable: 1
  size: 255

username needed to log in to target

password

  data_type: 'varchar'
  is_nullable: 1
  size: 255

password needed to log in to target

servername

  data_type: 'longtext'
  is_nullable: 0

name given to the target by the library

checked

  data_type: 'smallint'
  is_nullable: 1

whether this target is checked by default (1 for yes, 0 for no)

rank

  data_type: 'integer'
  is_nullable: 1

where this target appears in the list of targets

syntax

  data_type: 'varchar'
  is_nullable: 0
  size: 80

MARC format provided by this target

timeout

  data_type: 'integer'
  default_value: 0
  is_nullable: 0

number of seconds before Koha stops trying to access this server

servertype

  data_type: 'enum'
  default_value: 'zed'
  extra: {list => ["zed","sru"]}
  is_nullable: 0

zed means z39.50 server

encoding

  data_type: 'mediumtext'
  is_nullable: 0

characters encoding provided by this target

recordtype

  data_type: 'enum'
  default_value: 'biblio'
  extra: {list => ["authority","biblio"]}
  is_nullable: 0

server contains bibliographic or authority records

sru_options

  data_type: 'varchar'
  is_nullable: 1
  size: 255

options like sru=get, sru_version=1.1; will be passed to the server via ZOOM

sru_fields

  data_type: 'longtext'
  is_nullable: 1

contains the mapping between the Z3950 search fields and the specific SRU server indexes

add_xslt

  data_type: 'longtext'
  is_nullable: 1

zero or more paths to XSLT files to be processed on the search results

attributes

  data_type: 'varchar'
  is_nullable: 1
  size: 255

additional attributes passed to PQF queries

PRIMARY KEY

<<