4.2 broke MSSQL
-
There are at least two files that contain the MYSQL command “SHOW FULL COLUMNS” which is an invalid MSSQL statement.
Statements such as these might work:
OLD STATEMENT $results = $wpdb->get_results( "SHOW FULL COLUMNS FROM
$table`” );
NEW STATEMENT $results = $wpdb->get_results( “select * from information_schema.columns where table_name =’$table'” );`I found these in wp-admin/includes/upgrade.php and wp-includes/update.php but that command is still being thrown by another file and I haven’t found it yet.
Anyone else make any progress on this?
Viewing 14 replies - 1 through 14 (of 14 total)
Viewing 14 replies - 1 through 14 (of 14 total)
- The topic ‘4.2 broke MSSQL’ is closed to new replies.