diff --git a/Database/Dump20151008-1.sql b/Database/Dump20151008-1.sql
deleted file mode 100644
index ff63dae..0000000
--- a/Database/Dump20151008-1.sql
+++ /dev/null
@@ -1,156 +0,0 @@
-CREATE DATABASE IF NOT EXISTS `testdb` /*!40100 DEFAULT CHARACTER SET utf8 */;
-USE `testdb`;
--- MySQL dump 10.13 Distrib 5.6.24, for Win64 (x86_64)
---
--- Host: localhost Database: testdb
--- ------------------------------------------------------
--- Server version 5.6.27-log
-
-/*!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 */;
-/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
-/*!40103 SET TIME_ZONE='+00:00' */;
-/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
-/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
-/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
-/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
-
---
--- Table structure for table `collecteddata_t`
---
-
-DROP TABLE IF EXISTS `collecteddata_t`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `collecteddata_t` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `devicedataitem` int(11) NOT NULL,
- `value` varchar(512) NOT NULL,
- PRIMARY KEY (`id`),
- CONSTRAINT `devicedataitem_fk` FOREIGN KEY (`id`) REFERENCES `devicedataitem_t` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION
-) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Dumping data for table `collecteddata_t`
---
-
-LOCK TABLES `collecteddata_t` WRITE;
-/*!40000 ALTER TABLE `collecteddata_t` DISABLE KEYS */;
-/*!40000 ALTER TABLE `collecteddata_t` ENABLE KEYS */;
-UNLOCK TABLES;
-
---
--- Table structure for table `dataitem_t`
---
-
-DROP TABLE IF EXISTS `dataitem_t`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `dataitem_t` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `oid` varchar(128) NOT NULL,
- `description` varchar(45) NOT NULL,
- `handling` varchar(45) NOT NULL,
- PRIMARY KEY (`id`),
- UNIQUE KEY `oid_UNIQUE` (`oid`),
- UNIQUE KEY `description_UNIQUE` (`description`)
-) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Dumping data for table `dataitem_t`
---
-
-LOCK TABLES `dataitem_t` WRITE;
-/*!40000 ALTER TABLE `dataitem_t` DISABLE KEYS */;
-/*!40000 ALTER TABLE `dataitem_t` ENABLE KEYS */;
-UNLOCK TABLES;
-
---
--- Table structure for table `device_t`
---
-
-DROP TABLE IF EXISTS `device_t`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `device_t` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `address` varchar(45) NOT NULL,
- `community` varchar(45) NOT NULL,
- `period` int(11) NOT NULL,
- PRIMARY KEY (`id`),
- UNIQUE KEY `address_UNIQUE` (`address`)
-) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Dumping data for table `device_t`
---
-
-LOCK TABLES `device_t` WRITE;
-/*!40000 ALTER TABLE `device_t` DISABLE KEYS */;
-/*!40000 ALTER TABLE `device_t` ENABLE KEYS */;
-UNLOCK TABLES;
-
---
--- Table structure for table `devicedataitem_t`
---
-
-DROP TABLE IF EXISTS `devicedataitem_t`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `devicedataitem_t` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `device` int(11) NOT NULL,
- `dataitem` int(11) NOT NULL,
- PRIMARY KEY (`id`),
- CONSTRAINT `device_fk` FOREIGN KEY (`id`) REFERENCES `device_t` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION
-) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Dumping data for table `devicedataitem_t`
---
-
-LOCK TABLES `devicedataitem_t` WRITE;
-/*!40000 ALTER TABLE `devicedataitem_t` DISABLE KEYS */;
-/*!40000 ALTER TABLE `devicedataitem_t` ENABLE KEYS */;
-UNLOCK TABLES;
-
---
--- Table structure for table `testtable`
---
-
-DROP TABLE IF EXISTS `testtable`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `testtable` (
- `id` int(11) NOT NULL,
- `text` varchar(256) DEFAULT NULL,
- PRIMARY KEY (`id`)
-) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Dumping data for table `testtable`
---
-
-LOCK TABLES `testtable` WRITE;
-/*!40000 ALTER TABLE `testtable` DISABLE KEYS */;
-INSERT INTO `testtable` VALUES (0,'test0'),(1,'test1');
-/*!40000 ALTER TABLE `testtable` ENABLE KEYS */;
-UNLOCK TABLES;
-/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
-
-/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
-/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
-/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
-/*!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 */;
-/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
-
--- Dump completed on 2015-10-08 18:03:06
diff --git a/Snmp2Mysql.userprefs b/Snmp2Mysql.userprefs
new file mode 100644
index 0000000..54d3486
--- /dev/null
+++ b/Snmp2Mysql.userprefs
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Snmp2Mysql/bin/Debug/Snmp2Mysql.pdb b/Snmp2Mysql/bin/Debug/Snmp2Mysql.pdb
deleted file mode 100644
index 98a18e6..0000000
Binary files a/Snmp2Mysql/bin/Debug/Snmp2Mysql.pdb and /dev/null differ
diff --git a/Snmp2Mysql/bin/Debug/Snmp2Mysql.vshost.exe b/Snmp2Mysql/bin/Debug/Snmp2Mysql.vshost.exe
deleted file mode 100644
index c0dfecc..0000000
Binary files a/Snmp2Mysql/bin/Debug/Snmp2Mysql.vshost.exe and /dev/null differ
diff --git a/Snmp2Mysql/bin/Debug/Snmp2Mysql.vshost.exe.config b/Snmp2Mysql/bin/Debug/Snmp2Mysql.vshost.exe.config
deleted file mode 100644
index fad249e..0000000
--- a/Snmp2Mysql/bin/Debug/Snmp2Mysql.vshost.exe.config
+++ /dev/null
@@ -1,6 +0,0 @@
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Snmp2Mysql/bin/Debug/Snmp2Mysql.vshost.exe.manifest b/Snmp2Mysql/bin/Debug/Snmp2Mysql.vshost.exe.manifest
deleted file mode 100644
index f96b1d6..0000000
--- a/Snmp2Mysql/bin/Debug/Snmp2Mysql.vshost.exe.manifest
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
diff --git a/Snmp2Mysql/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache b/Snmp2Mysql/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache
deleted file mode 100644
index 622fec4..0000000
Binary files a/Snmp2Mysql/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache and /dev/null differ
diff --git a/Snmp2Mysql/obj/Debug/Snmp2Mysql.csproj.FileListAbsolute.txt b/Snmp2Mysql/obj/Debug/Snmp2Mysql.csproj.FileListAbsolute.txt
deleted file mode 100644
index 106802e..0000000
--- a/Snmp2Mysql/obj/Debug/Snmp2Mysql.csproj.FileListAbsolute.txt
+++ /dev/null
@@ -1,7 +0,0 @@
-c:\users\dehottgw\documents\visual studio 2013\Projects\Snmp2Mysql\Snmp2Mysql\bin\Debug\Snmp2Mysql.exe.config
-c:\users\dehottgw\documents\visual studio 2013\Projects\Snmp2Mysql\Snmp2Mysql\bin\Debug\Snmp2Mysql.exe
-c:\users\dehottgw\documents\visual studio 2013\Projects\Snmp2Mysql\Snmp2Mysql\bin\Debug\Snmp2Mysql.pdb
-c:\users\dehottgw\documents\visual studio 2013\Projects\Snmp2Mysql\Snmp2Mysql\obj\Debug\Snmp2Mysql.exe
-c:\users\dehottgw\documents\visual studio 2013\Projects\Snmp2Mysql\Snmp2Mysql\obj\Debug\Snmp2Mysql.pdb
-c:\users\dehottgw\documents\visual studio 2013\Projects\Snmp2Mysql\Snmp2Mysql\bin\Debug\MySql.Data.dll
-c:\users\dehottgw\documents\visual studio 2013\Projects\Snmp2Mysql\Snmp2Mysql\bin\Debug\SnmpSharpNet.dll
diff --git a/Snmp2Mysql/obj/Debug/Snmp2Mysql.pdb b/Snmp2Mysql/obj/Debug/Snmp2Mysql.pdb
deleted file mode 100644
index 98a18e6..0000000
Binary files a/Snmp2Mysql/obj/Debug/Snmp2Mysql.pdb and /dev/null differ
diff --git a/Snmp2Mysql/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs b/Snmp2Mysql/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
deleted file mode 100644
index e69de29..0000000
diff --git a/Snmp2Mysql/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs b/Snmp2Mysql/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
deleted file mode 100644
index e69de29..0000000
diff --git a/Snmp2Mysql/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs b/Snmp2Mysql/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
deleted file mode 100644
index e69de29..0000000