Ignore:
Timestamp:
2018-10-26T15:10:47+13:00 (6 years ago)
Author:
ak19
Message:

Tidying up and adjusting TODO statements

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/trunk/greenstone2/perllib/gssql.pm

    r32541 r32543  
    212212# GreenstoneSQLPlugout, this method will not attempt to create the requested db (nor its tables)
    213213# TODO: GS SQLPlugin is called before GS SQLPlugout and attempts to use_db() - called in plugin's
    214 # init() method. This will fail if the db does not exist. Ideally want our plugin only called
     214# init() method. This will fail if the db does not exist. Ideally want the gssqlplugin only called
    215215# during buildcol.pl
    216216sub use_db {
     
    282282
    283283# "IF EXISTS is used to prevent an error from occurring if the database does not exist. ... DROP DATABASE returns the number of tables that were removed. The DROP DATABASE statement removes from the given database directory those files and directories that MySQL itself may create during normal operation.Jun 20, 2012"
    284 #MySQL 8.0 Reference Manual :: 13.1.22 DROP DATABASE Syntax
     284# MySQL 8.0 Reference Manual :: 13.1.22 DROP DATABASE Syntax
    285285# https://dev.mysql.com/doc/en/drop-database.html
    286286sub delete_collection_tables {
     
    432432# see https://www.perlmonks.org/bare/?node=DBI%20Recipes
    433433#    The page further has a table_exists function that could work with proper comparison
    434 # TODO: Couldn't get the first solution at https://www.perlmonks.org/bare/?node_id=500050 to work though
     434# TODO Q: Couldn't get the first solution at https://www.perlmonks.org/bare/?node_id=500050 to work though
    435435sub table_exists {
    436436    my $self = shift (@_);
Note: See TracChangeset for help on using the changeset viewer.