-- 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');