• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Project reqs and a DataFacade

 
Ranch Hand
Posts: 77
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
In re-reading my design spec there is a blurb:

...There are three key parts: (1) the server-side database with network server functionality, (2) the client-side graphical user interface, and (3) a client-side database client part that handles the networking on behalf of the user interface.


Given this, how is item 3 different from item 2??? I would think a "client side database client" would be functionality within the GUI. Apparently it isn't which is very confusing.
The best guess I have for this is that item 3 would be a Facade or DataAccessFacade. If so, how would a DataAccessFacade fit into a my current codebase:

In asking this question I'm not looking for someone to provide code, just a little direction.
Thanks
 
Ranch Hand
Posts: 2937
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator


If so, how would a DataAccessFacade fit into a my current codebase


It doesn't have to fit anywhere, -- it would be a stand-alone class and your client would use it.
Eugene.
 
author
Posts: 3252
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
In my design, (3) consisted of a single class that I didn't even write myself: the rmic Connection stub.
The assessor was happy enough with it.
- Peter
 
Christian Garcia
Ranch Hand
Posts: 77
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Thank you both for the information.
 
With a little knowledge, a cast iron skillet is non-stick and lasts a lifetime.
reply
    Bookmark Topic Watch Topic
  • New Topic