Hataları göster:
$wpdb->show_errors = true
olarak WP_DEBUG
ayarlanmışsa , hataları otomatik olarak gösterir true
.
$wpdb->suppress_errors = false
hataları gizlemeyi durdurur.
Multisite özel tedavi gerekir
// Show errors in Multisite:
global $wpdb, $blog_id;
// There's no is_multisite(), so we need to check the ID
// This means, that we can't debug the blog with the ID 1 as MU-blog by default
// Check if we are on Blog ID#1 and if not, check the defines and add error handling
if ( 1 !== $blog_id )
! defined( 'DIEONDBERROR' ) AND define( 'DIEONDBERROR', true );
Çıkış işleme
$wpdb->update()
Yöntem, üç farklı çıkışa sahiptir. Buna karşı kontrol etmek için, bir sonucu: aa:: $result = $wpdb->update( /* ... */ );
.
Şu senaryoları ele al:
false === $result
: Başarısız
0 === $result
: Başarı, ancak güncelleme yok
0 < $result
: Başarı
Sınıf çıkışı
$wpdb->last_error
eğer varsa son hatayı size gösterecektir.
$wpdb->last_query
Son sorguyu (hatanın oluştuğu yeri) göstermenize yardımcı olacaktır. Temelde aynıdır array_pop( $wpbd->queries );
.
Önemli (güvenlik) Not
Lütfen DEĞİL canlı sitede bu kodları ekleyin. Özellikle, önbellek eklentileri söz konusu değilse. Bu, DB ile ilgili önemli verileri ziyaretçilere gösterebilir !
Aksi takdirde yapamazsanız: halkın hata ayıklama çıktısını almasını önlemek için kodunuzu daima koşullu ifadelere sarın!
// Example
function debug_query( $result, $data )
{
global $current_user;
get_currentuserinfo();
if ( current_user_can( 'manage_options' ) )
{
global $wpdb, $blog_id;
1 !== $blog_id
AND ! defined( 'DIEONDBERROR' )
AND define( 'DIEONDBERROR', true );
$wpdb->show_errors = true;
$wpdb->suppress_errors = false;
$output = '<pre style="white-space:pre-line;">';
$output .= 'Last Error: ';
$output .= var_export( $wpdb->last_error, true );
$output .= "\n\nLast Query: ";
$output .= var_export( $wpdb->last_query, true );
if ( false === $result )
{
$result = new WP_Error( 'query_failed', 'No update.', $data );
}
elseif ( 0 === $result )
{
$result = new WP_Error( 'update_failed', 'Updated zero rows.', $data );
}
elseif ( 0 < $result )
{
$result = 'Success';
}
$output .= '</pre>';
// Only abort, if we got an error
is_wp_error( $result )
AND exit( $output.$result->get_error_message() );
}
}
Maruz bırakmak $wpdb
nesneyi ayrıca veritabanı kullanıcı adı ve şifresini açığa olabilir!