I'm looking for the best way to handle this situation. I want to store an amortization schedule inside a databse table. Each row contains the date, current balance, payment, pricipal, interest, and new balance. For a typical 30 year mortgage this would be 360 rows or database inserts.
Should I do the calculations inside a loop using Delphi and do an insert for each result or should I perform these calculations inside a stored procedure?
This would be a single user, local machine, desktop application.