×
INTELLIGENT WORK FORUMS
FOR COMPUTER PROFESSIONALS

Contact US

Log In

Come Join Us!

Are you a
Computer / IT professional?
Join Tek-Tips Forums!
  • Talk With Other Members
  • Be Notified Of Responses
    To Your Posts
  • Keyword Search
  • One-Click Access To Your
    Favorite Forums
  • Automated Signatures
    On Your Posts
  • Best Of All, It's Free!

*Tek-Tips's functionality depends on members receiving e-mail. By joining you are opting in to receive e-mail.

Posting Guidelines

Promoting, selling, recruiting, coursework and thesis posting is forbidden.

Students Click Here

-General database discussion FAQ

DB Debugging & troubleshooting

5. Bringing it all together by jrbarnett
Posted: 14 Apr 14 (Edited 3 May 14)

5. Bringing it all together
Once you have been through this all, it is a matter of bringing all of your acquired knowledge together and starting to use current best practice within the programming tool(s) that are used.
This is by far the longest section, because you don't necessarily want to add new bugs or break features that work properly as part of your fixing. Therefore, significant testing is required before deploying any updates.

Useful things to do are:
- Add comment code blocks to make it clear what they do, including removing outdated items
- Replacing deprecated functionality with a more modern equivalent, including upgrading software to run with a newer version of runtimes or libraries.
- Renaming variables (and constants) to have sensible descriptive names and appropriate data types. Be sure to use a global search and replace function to ensure that you get all instances of it.
- Set up a documentation library (or write this up and add it to one that already exists).
- Populate description fields in front ends and database where available
- Speed up the database by ensuring proper primary keys/referential integrity/indexes are in place that will benefit the application
- Add whitespace and indentation to code to improve readability
- Move from front end to database connectivity that needs ODBC to one that uses a DSN less connection
- Use tools such as Visio to map out the process workflow and add this to your documentation

Once you have got this far, you can determine:
- how feasible it would be to either integrate the functionality with another application, or work out how big a job it would be to rewrite from scratch.

Good luck

Back to -General database discussion FAQ Index
Back to -General database discussion Forum

My Archive

Close Box

Join Tek-Tips® Today!

Join your peers on the Internet's largest technical computer professional community.
It's easy to join and it's free.

Here's Why Members Love Tek-Tips Forums:

Register now while it's still free!

Already a member? Close this window and log in.

Join Us             Close