summaryrefslogtreecommitdiffstats
path: root/Database
diff options
context:
space:
mode:
authortt412011-07-29 13:20:35 +0200
committertt412011-07-29 13:20:35 +0200
commitf14064834f9947ddf184881e72ab50956f163a7b (patch)
treeac1d5b4f8b47b67f891348a7febc8f3239c47263 /Database
parentinsert error code (diff)
downloadgsm-selftest-f14064834f9947ddf184881e72ab50956f163a7b.tar.gz
gsm-selftest-f14064834f9947ddf184881e72ab50956f163a7b.tar.xz
gsm-selftest-f14064834f9947ddf184881e72ab50956f163a7b.zip
Error code data.
Diffstat (limited to 'Database')
-rw-r--r--Database/ErrorCodeTable.sql46
1 files changed, 46 insertions, 0 deletions
diff --git a/Database/ErrorCodeTable.sql b/Database/ErrorCodeTable.sql
new file mode 100644
index 0000000..3dd6332
--- /dev/null
+++ b/Database/ErrorCodeTable.sql
@@ -0,0 +1,46 @@
+-- phpMyAdmin SQL Dump
+-- version 3.3.10deb1
+-- http://www.phpmyadmin.net
+--
+-- Host: localhost
+-- Generation Time: Jul 29, 2011 at 01:19 PM
+-- Server version: 5.1.54
+-- PHP Version: 5.3.5-1ubuntu7.2
+
+SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
+
+
+/*!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 */;
+
+--
+-- Database: `gsmselftesting`
+--
+
+-- --------------------------------------------------------
+
+--
+-- Table structure for table `ErrorCodeTable`
+--
+
+DROP TABLE IF EXISTS `ErrorCodeTable`;
+CREATE TABLE IF NOT EXISTS `ErrorCodeTable` (
+ `errorcode` int(4) NOT NULL,
+ `description` varchar(100) NOT NULL,
+ PRIMARY KEY (`errorcode`)
+) ENGINE=MyISAM DEFAULT CHARSET=latin1;
+
+--
+-- Dumping data for table `ErrorCodeTable`
+--
+
+INSERT INTO `ErrorCodeTable` (`errorcode`, `description`) VALUES
+(200, 'Call was OK'),
+(604, 'General Handler Error: Destination handler no respond timeout'),
+(998, 'General Handler Error: Could not connect Destination handler'),
+(605, 'General Handler Error: caller handler no respond timeout'),
+(999, 'General Handler Error: Could not connect to Caller handler'),
+(486, 'Call Failed'),
+(500, 'Server Internal Error');