Ignore:
Timestamp:
2010-12-07T16:55:10+13:00 (13 years ago)
Author:
max
Message:

Added (for GDBM and Sqlite) set_infodb_entry to directly change one value in the database. Print statements added to other versions of function, alterting that they are not implemented.

Also added read_infodb_rawentry. Plus, more efficient way of accessing a single record from Sqlite.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/trunk/greenstone2/perllib/dbutil/mssql.pm

    r22485 r23399  
    222222}
    223223
     224
     225 sub set_infodb_entry
     226{
     227  my $infodb_file_path = shift(@_);
     228  my $infodb_key = shift(@_);
     229  my $infodb_map = shift(@_);
     230 
     231  print STDERR "***** mssql::set_infodb_entry() not implemented yet!\n";
     232}
     233
    224234sub delete_infodb_entry
    225235{
Note: See TracChangeset for help on using the changeset viewer.