1,form是基于单表视图建立的,没有写on-insert此类的触发器。在视图上加了个rownum列结果导致form上的列不能更新

     据说此种情形下的form会判断视图上的列是否属于基表,不属于的话会导致整个块不能更新。

2,在form界面上显示行号

     在post-query里使用:system.trigger_record;    

   SYSTEM.CURSOR_RECORD和:system.trigger_record的区别:

   SYSTEM.CURSOR_RECORD represents the number of the record where the cursor is located.
  This number represents the record's current physical order in the block's list of records.
  The value is always a character string.    
  SYSTEM.TRIGGER_RECORD represents the number of the record that Form Builder is processing.  
  This number represents the record's current physical order in the block's list of records.
  The value is always a character string.

相关文章:

  • 2021-04-16
  • 2021-11-10
  • 2021-08-11
  • 2022-12-23
  • 2021-09-13
  • 2021-05-12
  • 2021-06-29
  • 2021-10-28
猜你喜欢
  • 2021-06-14
  • 2022-01-15
  • 2021-08-01
  • 2022-01-01
  • 2022-01-26
  • 2022-12-23
  • 2021-05-10
相关资源
相似解决方案