From f4b06e6a772a2688ee0575a8034b55401ea64049 Mon Sep 17 00:00:00 2001 From: Guido Lorenz Date: Mon, 25 Jun 2012 15:06:27 +0200 Subject: [PATCH] Improve "Unsupported column" exception message --- SQLite3JS/js/SQLite3.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SQLite3JS/js/SQLite3.js b/SQLite3JS/js/SQLite3.js index 25cae4b..4862260 100644 --- a/SQLite3JS/js/SQLite3.js +++ b/SQLite3JS/js/SQLite3.js @@ -108,7 +108,7 @@ case SQLite3.Datatype["null"]: return null; default: - throw new Error('Unsupported column type.'); + throw new Error('Unsupported column type in column ' + index); } } });