# HG changeset patch # User Matthew Wild # Date 1302004694 -3600 # Node ID ce92aafc9c0330e0a03b47eb01d3e31f4161aec2 # Parent 3c644c3b10e2d78976ee68f62c68802be434ae1c tools/migration/migrator/prosody_sql: Throw a friendlier error when LuaDBI is not found diff -r 3c644c3b10e2 -r ce92aafc9c03 tools/migration/migrator/prosody_sql.lua --- a/tools/migration/migrator/prosody_sql.lua Tue Apr 05 12:36:56 2011 +0100 +++ b/tools/migration/migrator/prosody_sql.lua Tue Apr 05 12:58:14 2011 +0100 @@ -1,6 +1,6 @@ local assert = assert; -local DBI = require "DBI"; +local have_DBI, DBI = pcall(require,"DBI"); local print = print; local type = type; local next = next; @@ -11,6 +11,10 @@ local tostring = tostring; local tonumber = tonumber; +if not have_DBI then + error("LuaDBI (required for SQL support) was not found, please see http://prosody.im/doc/depends#luadbi", 0); +end + module "prosody_sql" local function create_table(connection, params)