PHP Classes

File: XmlRepository.sql

Recommend this page to a friend!
  Classes of Roland Dietrich   XmlRepository   XmlRepository.sql   Download  
File: XmlRepository.sql
Role: Configuration script
Content type: text/plain
Description: script for repository table
Class: XmlRepository
XML storage solution using MySQL
Author: By
Last change:
Date: 21 years ago
Size: 332 bytes
 

Contents

Class file image Download
CREATE TABLE xmlrepository (
  source int(11) NOT NULL default '0',
  ordinal int(11) NOT NULL default '0',
  name varchar(100) default '',
  target int(11) NOT NULL default '0',
  data blob,
  attr tinyint(4) NOT NULL default '0',
  PRIMARY KEY (source,ordinal,attr),
  KEY idx_name (name),
  KEY idx_target (target)
)