I'm not sure what you mean by sections. There is no reason to use multiple databases just because your code is divided into multiple code segments or multiple compilation units (.c files).
Code segments are primarily a way of creating an application that's bigger than 64K without breaking the 64K per record/resource limit imposed by HotSync. Multiple compilation units are a way of organizing your source code. It is also easier to associate functions with code segments in some development environments if you split the functions into several compilation units, and assign each compilation unit to one segment. -- Peter Epstein -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/tech/support/forums/
