diff --git a/sql/insert/example/insert-20130605.sql b/sql/insert/example/insert-20130605.sql new file mode 100644 index 0000000..62f61c5 --- /dev/null +++ b/sql/insert/example/insert-20130605.sql @@ -0,0 +1,97 @@ +-- phpMyAdmin SQL Dump +-- version 3.5.2.2 +-- http://www.phpmyadmin.net +-- +-- Host: 127.0.0.1 +-- Erstellungszeit: 05. Jun 2013 um 14:11 +-- Server Version: 5.5.27 +-- PHP-Version: 5.4.7 + +SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO"; +SET time_zone = "+00:00"; + + +/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; +/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; +/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; +/*!40101 SET NAMES utf8 */; + +-- +-- Datenbank: `geodb` +-- + +-- +-- Daten für Tabelle `domain` +-- + +INSERT INTO `domain` (`id`, `name`) VALUES +(1, 'public'), +(2, 'private'); + +-- +-- Daten für Tabelle `information` +-- + +INSERT INTO `information` (`id`, `name`) VALUES +(1, 'address'); + +-- +-- Daten für Tabelle `place` +-- + +INSERT INTO `place` (`id`, `plan`, `parent`) VALUES +(1, 0x00000000010300000001000000050000000000000000000000000000000000000000000000000059400000000000000000000000000000594000000000000059400000000000000000000000000000594000000000000000000000000000000000, NULL), +(2, 0x00000000010100000000000000000049400000000000004940, 1), +(5, 0x00000000010300000001000000050000000000000000000000000000000000000000000000000024400000000000000000000000000000244000000000000024400000000000000000000000000000244000000000000000000000000000000000, 1), +(6, 0x00000000010100000000000000000014400000000000001440, 5); + +-- +-- Daten für Tabelle `placealias` +-- + +INSERT INTO `placealias` (`aid`, `pid`, `alias`) VALUES +(1, 1, 'Campus'), +(2, 2, 'Mitte'), +(3, 5, 'MyHome'), +(4, 6, 'MyRoom'); + +-- +-- Daten für Tabelle `placedomain` +-- + +INSERT INTO `placedomain` (`pid`, `did`) VALUES +(1, 1), +(2, 1), +(5, 1), +(5, 2), +(6, 2); + +-- +-- Daten für Tabelle `placeinformation` +-- + +INSERT INTO `placeinformation` (`pid`, `iid`, `value`) VALUES +(1, 1, 'Unistraße'), +(2, 1, 'mitte straße'), +(5, 1, 'myStreet 3'), +(6, 1, 'room5'); + +-- +-- Daten für Tabelle `placeservice` +-- + +INSERT INTO `placeservice` (`pid`, `sid`, `request`) VALUES +(2, 2, '$center'), +(6, 1, '$temp1'); + +-- +-- Daten für Tabelle `service` +-- + +INSERT INTO `service` (`id`, `name`, `sap`) VALUES +(1, 'testService', 'https://myService//'), +(2, 'pService', 'https://publicService//'); + +/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; +/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; +/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;