#!/bin/sh # Author: Athmane Madjoudj t_Log "Running $0 - check that sqlite can create database and tables." sqlite3 /tmp/tf_test.db 'drop table if exists tf_table;' sqlite3 /tmp/tf_test.db 'create table tf_table(text, id INTEGER);' t_CheckExitStatus $?