Closed (duplicate)
Project:
Backup and Migrate
Version:
7.x-2.3
Component:
User interface
Priority:
Critical
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
14 May 2012 at 06:36 UTC
Updated:
29 Mar 2013 at 11:34 UTC
Jump to comment: Most recent file
Comments
Comment #1
mahtoranjeet commentedHi,
Found some help from this thread http://drupal.org/node/1564408.
Comment #2
mfer commentedDrupal 7.14 made a breaking change in http://drupalcode.org/project/drupal.git/blobdiff/464808fb43c82ebb4beb3c... #1171866: Enforced fetching of fields/columns in lowercase breaks third-party integration
Comment #3
mfer commentedComment #4
mfer commentedThis patch is working for me.
The base issue is that prior to 7.14 drupal set the pdo connection case sensitivity to lower. In 7.14 it was not set meaning the responses from the database were taken as is. Column names start with an uppercase character (for example). So, everything started to break.
The attached patch grab the connections setting for this, sets it to lower, performs the query, and reverts back. This should work for all versions of Drupal 7.
Comment #5
micahw156Yep, patch in #4 fixed my broken backups on 7.14 also. Thanks, Matt!
Comment #6
ronan commentedThis should be fixed in 7.x-2.3. Can you confirm that you are running that version of the module?
Also, dupe: #1558680: Notice: Undefined index: name - BM can't read DB table names
Comment #7
kiliweb commentedPatch #4 works perfectly ! Thanks, you !