Well,
I have worked a lot with SQLite3.
And what I know you can not set CHARSET.
SQLite is often compiled to use UTF-8 internally.
MySQL often use for text field: collation utf-8_general_ci
The _ci means CASE INSENSITIVE in search/compare of text.
To make SQLite FIELD be case insensitive we can use COLLATE NOCASE
you create each field like this:
$sql = "CREATE TABLE blog (
id integer NOT NULL PRIMARY KEY AUTOINCREMENT DEFAULT 0,
blog_id Varchar(255) DEFAULT NULL COLLATE NOCASE,
title Varchar(100) DEFAULT NULL COLLATE NOCASE,
description Varchar(255) DEFAULT NULL COLLATE NOCASE
) " ;