From 41ee4346e14296329eaf1ed913b46684b6fb0476 Mon Sep 17 00:00:00 2001 From: Fred Gleason Date: Wed, 6 Dec 2017 15:09:01 -0500 Subject: [PATCH] 2017-12-05 Fred Gleason * Changed the default [mySQL] 'Engine=' directive value to 'MyISAM'. --- ChangeLog | 3 +++ scripts/engine_conv.py | 3 +++ 2 files changed, 6 insertions(+) diff --git a/ChangeLog b/ChangeLog index 8a5020f0..2971d210 100644 --- a/ChangeLog +++ b/ChangeLog @@ -16417,3 +16417,6 @@ updated when the log was unlinked. 2017-12-05 Fred Gleason * Changed the default [mySQL] 'Engine=' directive value to 'MyISAM'. +2017-12-06 Fred Gleason + * Added a note regrading package dependencies to the header of + 'scripts/engine_conv.py'. diff --git a/scripts/engine_conv.py b/scripts/engine_conv.py index 01191b26..8832d5b0 100755 --- a/scripts/engine_conv.py +++ b/scripts/engine_conv.py @@ -4,6 +4,8 @@ # # Convert a Rivendell database to use a different MySQL table engine # +# This script require the 'mysql-connector-python' +# # (C) Copyright 2017 Fred Gleason # # This program is free software; you can redistribute it and/or modify @@ -41,6 +43,7 @@ def GetDbCredentials(): def OpenDb(): creds=GetDbCredentials() + print('P/W: '+creds[1]) return mysql.connector.connect(user=creds[0],password=creds[1], host=creds[2],database=creds[3],buffered=True)