Difference between revisions of "Semantic MediaWiki/data/smw fpt type"

from HTYP, the free directory anyone can edit if they can prove to me that they're not a spambot
Jump to navigation Jump to search
(Created page with "==Notes== Contents of this table in a sample production environment:<pre> '504', NULL, 'http://semantic-mediawiki.org/swivt/1.0#_txt' '505', NULL, 'http://semantic-mediawiki.o...")
 
Line 11: Line 11:
 
'782', NULL, 'http://semantic-mediawiki.org/swivt/1.0#_txt'
 
'782', NULL, 'http://semantic-mediawiki.org/swivt/1.0#_txt'
 
</pre>
 
</pre>
The base URL in each case [http://semantic-mediawiki.org/swivt/1.0 appears to be] in XML.
+
The base URL in each case [http://semantic-mediawiki.org/swivt/1.0 appears to be] an XML page.
 
==SQL==
 
==SQL==
 
<source lang=mysql>CREATE TABLE `smw_fpt_type` (
 
<source lang=mysql>CREATE TABLE `smw_fpt_type` (

Revision as of 20:06, 9 July 2020

Notes

Contents of this table in a sample production environment:

'504', NULL, 'http://semantic-mediawiki.org/swivt/1.0#_txt'
'505', NULL, 'http://semantic-mediawiki.org/swivt/1.0#_txt'
'507', NULL, 'http://semantic-mediawiki.org/swivt/1.0#_dat'
'508', NULL, 'http://semantic-mediawiki.org/swivt/1.0#_txt'
'509', NULL, 'http://semantic-mediawiki.org/swivt/1.0#_cod'
'547', NULL, 'http://semantic-mediawiki.org/swivt/1.0#_txt'
'564', NULL, 'http://semantic-mediawiki.org/swivt/1.0#_dat'
'767', NULL, 'http://semantic-mediawiki.org/swivt/1.0#_txt'
'782', NULL, 'http://semantic-mediawiki.org/swivt/1.0#_txt'

The base URL in each case appears to be an XML page.

SQL

CREATE TABLE `smw_fpt_type` (
  `s_id` int(11) unsigned NOT NULL,
  `o_blob` mediumblob,
  `o_serialized` varbinary(255) DEFAULT NULL,
  KEY `s_id` (`s_id`),
  KEY `o_serialized` (`o_serialized`)
) ENGINE=InnoDB DEFAULT CHARSET=binary;