in reply to DBD::SQLite collation

Waht am I doing wrong?

As the error message says, you're using a collation that doesn't exist in SQLite. See the docs for existing collations.

Replies are listed 'Best First'.
Re^2: DBD::SQLite collation
by fanticla (Scribe) on Dec 04, 2010 at 15:56 UTC

    Hallo Moritz, I am trying to create a new one with $DBD::SQLite::COLLATION{no_accents} ....

      You are right, I answered in haste. Sorry about that.

      Two things come to mind: the first is that you might have an older version of DBD::SQLite installed which doesn't support that feature.

      The second is to try it with the $dbh->sqlite_create_collation function instead f assigning into the %COLLATION hash.