Changeset 12 in mp3-find for trunk/lib/MP3/Find/DB.pm


Ignore:
Timestamp:
02/14/06 20:19:23 (18 years ago)
Author:
peter
Message:
  • added "exclude_path" option to Filesystem backend
  • added an excluded directory to the test suite ("t/dont_look_here")
  • fixed dying DB test (still a workaround for a DBD::SQLite problem)
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/lib/MP3/Find/DB.pm

    r10 r12  
    123123        warn "Multiple records for $$mp3{FILENAME}\n" if @$records > 1; 
    124124         
     125        #TODO: maybe print status updates somewhere else? 
    125126        if (@$records == 0) { 
    126127            $insert_sth->execute(map { $mp3->{$$_[0]} } @COLUMNS); 
     
    138139    # (see http://rt.cpan.org/Ticket/Display.html?id=9643#txn-120724) 
    139140    foreach ($mtime_sth, $insert_sth, $update_sth) { 
     141        $_->{RaiseError} = 0;  # don't die on error 
    140142        $_->{Active} = 1; 
    141143        $_->finish; 
Note: See TracChangeset for help on using the changeset viewer.