Core/Pools: Implemented quest pooling

Core/DBLayer: Added GetNumRows() method to PreparedResultSet

--HG--
branch : trunk
This commit is contained in:
Shauren
2010-09-14 13:56:27 +02:00
parent cdd8f446fa
commit 102e51d620
10 changed files with 515 additions and 59 deletions

View File

@@ -1992,6 +1992,29 @@ LOCK TABLES `petition_sign` WRITE;
/*!40000 ALTER TABLE `petition_sign` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `pool_quest_save`
--
DROP TABLE IF EXISTS `pool_quest_save`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `pool_quest_save` (
`pool_id` int(10) unsigned NOT NULL DEFAULT '0',
`quest_id` int(10) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`pool_id`,`quest_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `pool_quest_save`
--
LOCK TABLES `pool_quest_save` WRITE;
/*!40000 ALTER TABLE `pool_quest_save` DISABLE KEYS */;
/*!40000 ALTER TABLE `pool_quest_save` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `worldstates`
--