You do not associate the command line with the builder. Command lines are associated with an Action object.
If you need a command line just write something like this:
built_database = env.Command(target, sources, Action('mySqlite3', 'Generating $TARGET with sqlite3'))
or if you want finer tuning
env['SQLITE3COMSTR'] = 'Generating $TARGET from $SOURCES with sqlite3' ... built_database = env.Command(target, sources, Action('mySqlite3', '$SQLITE3COMSTR'))
source share