Description: Use sqlite for tests
Author: Alexandre Viau <alexandre@alexandreviau.net>
Last-Update: 2015-09-04

--- a/db_test.go
+++ b/db_test.go
@@ -12,8 +12,8 @@
 )
 
 var (
-	//dbtype         string = "sqlite3"
-	dbtype         string = "mysql"
+	dbtype         string = "sqlite3"
+	//dbtype         string = "mysql"
 	createTableSql string
 )
 
@@ -541,6 +541,7 @@
 }
 
 func TestExecMap(t *testing.T) {
+    t.Skip("Unsupported test with sqlite")
 	db, err := testOpen()
 	if err != nil {
 		t.Error(err)
@@ -584,6 +585,7 @@
 }
 
 func TestExecStruct(t *testing.T) {
+    t.Skip("Unsupported test with sqlite")
 	db, err := testOpen()
 	if err != nil {
 		t.Error(err)
