in reply to SQL Query a Non-CSV Flat File - Any Suggestions? :S

As another alternative, consider DBD::SQLite and a :memory: database. I'm not sure whether querying DBD::AnyData will actually be fast - certainly, it won't create or use any index for your columns.

Replies are listed 'Best First'.
Re^2: SQL Query a Non-CSV Flat File - Any Suggestions? :S
by muyprofesional (Initiate) on Jul 15, 2010 at 15:48 UTC
    I'll use a field as index, but would have duplicated data, and not allways will use it. I think DBD::SQlite with memory database could help my memory balancing. Thanks a lot!