请问,如果当我的表出现了 insert语句以后
自动 向另外一个数据库 做 这条 insert 语句,可以吗?
例:
 if(a.user.isInsert() == true)
{
  insert in to b.user.insert (a表刚刚插入的内容);
}
A表跟B表的 表结构一样。