我编写了 list.jsp 程序,它只是从 oracle 数据库中检索记录。我将此查询嵌入到preparedstatement中
select * from emp orderby sal;
当我在 emp 表中插入任何新记录时,list.jsp 在刷新页面(list.jsp)之前不会显示新记录。
这里我的查询是..
how to append these newly inserted record's information to the list.jsp
automatically without refreshing or reloading entire page by using ajax ?