Difference between revisions of "Changes in database.conf.dist from Release 2.4.1 to 2.4.5"

From WeBWorK_wiki
Jump to navigation Jump to search
 
Line 1: Line 1:
  +
{{Historical }}
  +
 
* new: define path to mysql and mysqldump for archive and restore
 
* new: define path to mysql and mysqldump for archive and restore
 
# kinda hacky, but needed for table dumping
 
# kinda hacky, but needed for table dumping

Latest revision as of 18:28, 4 June 2013

This article has been retained as a historical document. It is not up-to-date and the formatting may be lacking. Use the information herein with caution.
  • new: define path to mysql and mysqldump for archive and restore
     # kinda hacky, but needed for table dumping
      mysql_path     => $externalPrograms{mysql},
      mysqldump_path => $externalPrograms{mysqldump},
  • new: gateway quiz data item
      setting => {
              record => "WeBWorK::DB::Record::Setting",
              schema => "WeBWorK::DB::Schema::NewSQL::Std",
              driver => "WeBWorK::DB::Driver::SQL",
              source => $database_dsn,
              params => { %sqlParams,
                      tableOverride => "${courseName}_setting"
              },
      },