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

From WeBWorK_wiki
Jump to navigation Jump to search
(New page: * new: define path to mysql and mysqldump for archive and restore # kinda hacky, but needed for table dumping mysql_path => $externalPrograms{mysql}, mysqldump_path...)
 
No edit summary
 
(One intermediate revision by the same user not shown)
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
Line 13: Line 15:
               },
               },
       },
       },
[[Category:Release_Notes]]

Latest revision as of 22: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"
              },
      },