Shadowhelix:Datenbank: Unterschied zwischen den Versionen
Zur Navigation springen
Zur Suche springen
Loki (Diskussion | Beiträge) Keine Bearbeitungszusammenfassung |
Loki (Diskussion | Beiträge) Keine Bearbeitungszusammenfassung |
||
Zeile 11: | Zeile 11: | ||
| [[Datei:Entwurf contributors weblink.txt]] | | [[Datei:Entwurf contributors weblink.txt]] | ||
| <tt>id_contributor <nowiki>|</nowiki> url</tt> | | <tt>id_contributor <nowiki>|</nowiki> url</tt> | ||
|- | |||
| colspan="2" | | |||
|- | |- | ||
| [[Datei:Entwurf sources.txt]] | | [[Datei:Entwurf sources.txt]] | ||
Zeile 32: | Zeile 34: | ||
| <tt>id_illustration <nowiki>|</nowiki> web_link <nowiki>|</nowiki> direct_link</tt> | | <tt>id_illustration <nowiki>|</nowiki> web_link <nowiki>|</nowiki> direct_link</tt> | ||
|- | |- | ||
| colspan="2" | | |||
|- | |||
| [[Datei:Entwurf shadow matrix users.txt]] | |||
| <tt>id_user <nowiki>|</nowiki> id_person <nowiki>|</nowiki> name</tt> | |||
|- | |||
| [[Datei:Entwurf shadow matrix shadowtalk source.txt]] | |||
| <tt>id_user <nowiki>|</nowiki> id_source <nowiki>|</nowiki> issue <nowiki>|</nowiki> page_reference <nowiki>|</nowiki> entry_reference</tt> | |||
|} | |} | ||
Zeile 97: | Zeile 106: | ||
,web_link TEXT | ,web_link TEXT | ||
,direct_link TEXT | ,direct_link TEXT | ||
); | |||
CREATE TABLE shadow_matrix_users( | |||
id_user INTEGER(0) NOT NULL | |||
,id_person INTEGER(0) | |||
,name TEXT | |||
); | |||
CREATE TABLE shadow_matrix_shadowtalk_source( | |||
id_user INTEGER(0) NOT NULL | |||
,id_source INTEGER(0) NOT NULL | |||
,issue TEXT | |||
,page_reference TEXT | |||
,entry_reference TEXT | |||
); | ); | ||
</pre> | </pre> |
Version vom 28. August 2014, 09:39 Uhr
Letztes Update: 28.08.2014 |
Die Seite Shadowhelix:Datenbank dient der Erarbeitung eines Entwurfs für eine Datenbank, die Bereiche von Shadowrun mit großen Datenmengen besser zugänglich machen soll. Vorallem soll ein Datenbank-Schema erstellt werden, auf dessen Basis eine Datenbank aufgesetzt werden kann.
Entwurf
Datei:Entwurf contributors.txt | id_contributor | surname | surname_suffix | forename_first | forename_second | forename_third | year_birth | year_death |
Datei:Entwurf contributors weblink.txt | id_contributor | url |
Datei:Entwurf sources.txt | id_source | description | language |
Datei:Entwurf sources catalog.txt | id_source | id_drivethru | id_amazon | id_rpggeek |
Datei:Entwurf contributions.txt | id_contributor | id_source | standard_descriptor | uncredited | title_contribution |
Datei:Entwurf illustrations.txt | id_illustration | id_contributor | id_constructed |
Datei:Entwurf illustrations source.txt | id_illustration | id_source | page_reference | position |
Datei:Entwurf illustrations weblink.txt | id_illustration | web_link | direct_link |
Datei:Entwurf shadow matrix users.txt | id_user | id_person | name |
Datei:Entwurf shadow matrix shadowtalk source.txt | id_user | id_source | issue | page_reference | entry_reference |
Listenkonversion
Datenbankumsetzung - SQLite
Skript für Tabellenerstellung:
CREATE TABLE sources( id_source INTEGER(0) NOT NULL ,description TEXT NOT NULL ,language TEXT NOT NULL ); CREATE TABLE sources_catalog( id_source INTEGER(0) NOT NULL ,id_drivethru TEXT ,id_amazon TEXT ,id_rpggeek TEXT ); CREATE TABLE contributors( id_contributor INTEGER(0) NOT NULL ,surname TEXT NOT NULL ,surname_suffix TEXT ,forename_first TEXT ,forename_second TEXT ,forename_third TEXT ,year_birth TEXT ,year_death TEXT ); CREATE TABLE contributors_weblink( id_contributor INTEGER(0) NOT NULL ,url TEXT NOT NULL ); CREATE TABLE contributions( id_contributor INTEGER(0) NOT NULL ,id_source INTEGER(0) NOT NULL ,standard_descriptor TEXT NOT NULL ,uncredited CHAR(1) ,title_contribution TEXT ); CREATE TABLE illustrations( id_illustration INTEGER(0) NOT NULL ,id_contributor INTEGER(0) ,id_constructed TEXT ); CREATE TABLE illustrations_source( id_illustration INTEGER(0) NOT NULL ,id_source INTEGER(0) NOT NULL ,page_reference TEXT ,position TEXT ); CREATE TABLE illustrations_weblink( id_illustration INTEGER(0) NOT NULL ,web_link TEXT ,direct_link TEXT ); CREATE TABLE shadow_matrix_users( id_user INTEGER(0) NOT NULL ,id_person INTEGER(0) ,name TEXT ); CREATE TABLE shadow_matrix_shadowtalk_source( id_user INTEGER(0) NOT NULL ,id_source INTEGER(0) NOT NULL ,issue TEXT ,page_reference TEXT ,entry_reference TEXT );
Interessante Bereiche
- Autoren, Illustratoren etc.
- Konzerne
- Quellenbücher
- Shadowtalker
Weblinks
- Datenbank-Modellierung: