Pro *C Programming Do’s and Don’t

by Mark Marucot on November 18, 2007

  1. Use one array per action such as inserting, updated and deleting records.
  2. Always increment the array counter every time you add new records.
  3. Always resize array every time you add new records.
  4. Always reset the array counter after the bulk update, insert and delete.
  5. Inserting or updating records should comes last if the value of column in comes from a separate logic such as calculation, sequence retrieval.

Random Posts

Leave a Comment

Previous post:

Next post: