'Nuf ced... Not working yet.
As indicated in the code, it is still not implemented:
function schema_unprefix_table($name) { // TODO: Deal with D7 prefixing
The code only deals with D6 prefixing. Then in my case, as a temporary workaround, I added a D6 like variable in settings.php :
//D6 prefixing for Schema $db_prefix = 'd7u_'; //D7 DB config $databases['default']['default'] = array( 'driver' => 'mysql', 'database' => 'd7u', 'username' => 'drupaluser', ...
Still waiting for code modification. ;-)
subscribe
sub
Related issue: #1223858: Database prefix (without '_') unsupported. It contains a patch that seems to fix the problem. Cheers.
Duplicate of #1223858: Database prefix (without '_') unsupported
Comments
Comment #1
rondev commentedAs indicated in the code, it is still not implemented:
The code only deals with D6 prefixing.
Then in my case, as a temporary workaround, I added a D6 like variable in settings.php :
Still waiting for code modification. ;-)
Comment #2
FrequenceBanane commentedsubscribe
Comment #3
laurentchardin commentedsubscribe
Comment #4
jviitamaki commentedsub
Comment #5
markus_petrux commentedRelated issue: #1223858: Database prefix (without '_') unsupported. It contains a patch that seems to fix the problem. Cheers.
Comment #6
andypostDuplicate of #1223858: Database prefix (without '_') unsupported