Paul
> --
> You received this message because you are subscribed to the Google Groups "GLUEscript" group.
> To post to this group, send email to glues...@googlegroups.com.
> To unsubscribe from this group, send email to gluescript+...@googlegroups.com.
> For more options, visit this group at http://groups.google.com/group/gluescript?hl=en.
>
>
This is the MySql to create the database, or did you want a data dump as well?
The database is generated by JabRef ( http://jabref.sourceforge.net/ )
as an export into MySql, and has been a very stable process over many
years.
Paul
CREATE TABLE `entries` (
`entries_id` INT(11) NOT NULL AUTO_INCREMENT,
`jabref_eid` VARCHAR(8) NULL DEFAULT NULL,
`entry_types_id` INT(10) UNSIGNED NULL DEFAULT NULL,
`cite_key` VARCHAR(100) NULL DEFAULT NULL,
`author` TEXT NULL,
`title` TEXT NULL,
`journal` TEXT NULL,
`year` TEXT NULL,
`volume` TEXT NULL,
`pages` TEXT NULL,
`number` TEXT NULL,
`month` TEXT NULL,
`part` TEXT NULL,
`eid` TEXT NULL,
`note` TEXT NULL,
`crossref` TEXT NULL,
`keywords` TEXT NULL,
`doi` TEXT NULL,
`url` TEXT NULL,
`file` TEXT NULL,
`citeseerurl` TEXT NULL,
`pdf` TEXT NULL,
`abstract` TEXT NULL,
`comment` TEXT NULL,
`owner` TEXT NULL,
`timestamp` TEXT NULL,
`review` TEXT NULL,
`search` TEXT NULL,
`publisher` TEXT NULL,
`editor` TEXT NULL,
`series` TEXT NULL,
`address` TEXT NULL,
`edition` TEXT NULL,
`howpublished` TEXT NULL,
`lastchecked` TEXT NULL,
`booktitle` TEXT NULL,
`organization` TEXT NULL,
`language` TEXT NULL,
`chapter` TEXT NULL,
`type` TEXT NULL,
`school` TEXT NULL,
`nationality` TEXT NULL,
`yearfiled` TEXT NULL,
`assignee` TEXT NULL,
`day` TEXT NULL,
`dayfiled` TEXT NULL,
`monthfiled` TEXT NULL,
`institution` TEXT NULL,
`revision` TEXT NULL,
PRIMARY KEY (`entries_id`),
INDEX `entry_types_id` (`entry_types_id`),
CONSTRAINT `entries_ibfk_1` FOREIGN KEY (`entry_types_id`) REFERENCES
`entry_types` (`entry_types_id`)
)
COLLATE='utf8_general_ci'
ENGINE=InnoDB
AUTO_INCREMENT=70;