File

plugins/mod_storage_internal.lua @ 4285:c806a599224a

mod_storage_sql: Switch to MEDIUMTEXT for the 'value' column when using MySQL, as it imposes a 64K limit otherwise, potentially truncating data. Automatically upgrades existing tables.
author Matthew Wild <mwild1@gmail.com>
date Thu, 02 Jun 2011 02:30:26 +0100
parent 4085:7699cef04740
child 5033:c64b5081bfa8
line wrap: on
line source

local datamanager = require "core.storagemanager".olddm;

local host = module.host;

local driver = { name = "internal" };
local driver_mt = { __index = driver };

function driver:open(store)
	return setmetatable({ store = store }, driver_mt);
end
function driver:get(user)
	return datamanager.load(user, host, self.store);
end

function driver:set(user, data)
	return datamanager.store(user, host, self.store, data);
end

module:add_item("data-driver", driver);