我想知道在MySQL的InnoDB中是否可以使用带有外键的表(db:3306带密码),该外键引用不同端口数据库中的另一个表(db:3307,没有密码) ?如果是这样,如何做到这一点?
我试过这个
<script>
function getValue(val) {
var $form = $('#formId');
$form.find('submit').attr('disabled', true); // Disable further button click
$.ajax({
type: "POST",
url: "<?php echo base_url() ?>moderator/QuoteMerchant/createquotemerchant",
data: {from: "ajax", reqid: val},
success: function (data) {
$("#content").html(data);
},
complete: function() {
$form.find('submit').removeAttr('disabled'); // On complete enable the button
}
});
}
</script>
它抛出错误如下
错误代码:1215无法添加外键约束
高级谢谢..