如何从UNIQUE KEY显示错误

时间:2016-05-31 07:30:27

标签: php mysql

我创建了一个表,其中一列(company_nip)具有唯一键以防止重复。问题是,我不知道该怎么做,在页面上显示错误。在这里,我将它们添加到数据库并显示一条消息,表明它运行良好,以及如何在数据库中已存在company_nip的值时显示错误?

public static AnimationSet addAnimationAr(Animation[] animations) {
    AnimationSet animationSet = new AnimationSet(false);
    long totalAnimationDuration = 0;

    for (int i = 0; i < animations.length; i++) {
        Animation a = animations[i];
        a.setStartOffset(totalAnimationDuration);
        totalAnimationDuration += a.getDuration();
        animationSet.addAnimation(a);
    }

    return animationSet;
}

1 个答案:

答案 0 :(得分:0)

$result = $wpdb->insert( 
                'test', 
                array( 
                    'company_nip' => $company_nip, 'company_name' => $company_name)
            );

if (!$result) {
    //show message that already exist
}