summaryrefslogtreecommitdiffstats
path: root/Database/ErrorCodeTable.sql
blob: 3dd6332dd2ad9fecd96f359b7cd13c0618f8ae25 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
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');