Post Conversion Suggestions


Compare converted application to the original
Begin to explore all aspects of your application and see how the feel of the application has changed. Take note of anything that seems irregular or perhaps even slower than the BDE. In some cases a little additional tuning and tinkering may be necessary.

By and large you should expect IBO to be much more responsive and fluid in how it interacts with the server.

Pay the closest attention to datasets that are fairly complex and make sure they are functioning in the expected manner with satisfactory performance. Consider updates, lookups, filtering, locates, finds, etc.

Keep a running copy of the application in the BDE in order to compare. Something that may seem slow in IBO could be even slower in the BDE. This is a sure way to keep a basis of comparison so that your perceptions don't have opportunity to wander. If IBO is faster then this is where the proof will be. I am confident that it will be. I'd like that to be proven rather than assumed.

Become familiar with how IBO traces the API calls. It is simple to include SQL tracing in IBO using the IB_MonitorDialog component. Drop it on the main form or data module and then setup a FormCreate event handler and call the Show method of the monitor dialog component.

This will bring up a form containing a detailed log of what all is being processed through the API.

By examining the results it is possible to see how long certain calls are taking to process. The exact SQL that is being sent to the server and all of the parameter and field values can be examined. IBO also includes the SECONDS to the thousandth of a second accuracy of how long a statement took to execute on the server. It also automatically includes the statement plans whenever a statement is prepared. If a DML statement is executed it will also include the RowsAffected information.

This tool can become a very critical element to making sure that the server is being dealt with in the most optimal fashion. Also, if you are having troubles getting something to work just right you can get some very helpful clues about what is going wrong by looking at the SQL that is being sent to the server along with the parameter values. Especially since IBO will at times make various adjustments to the SQL being sent to the server.

If you are having troubles and make a support request of me then I will very likely ask you to provide a copy of the trace log showing the problematic portion.