home *** CD-ROM | disk | FTP | other *** search
/ Peanuts NeXT Software Archives / Peanuts-2.iso / Developer / objc / dbkit / BooleanFormatter.README < prev    next >
Encoding:
Text File  |  1993-12-20  |  1.6 KB  |  31 lines

  1. BooleanFormatter
  2. by Mai Nguyen, NeXT Developer Support 
  3. ( Special thanks to William Shipley  for the original BooleanFormatter source code)
  4.  
  5. Overview
  6.  
  7. In order to run this example, you need to have an ORACLE server with a demo database installed.  You should install the OracleDemo.dbmodel from /NextDeveloper/Examples/DatabaseKit/Models into your ~/Library/Databases directory.
  8. This example shows how to substitute the default display format in the TableView to your own format by subclassing the DBFormatter class. 
  9. You can reuse the BooleanFormatter to display YES/NO instead of your boolean data. Note that in this example, customerID is used as a boolean column  just to show that this format works with integer data type. You should use real boolean data in your app.
  10.  
  11. Program Organization
  12.  
  13. Major Classes in the Application
  14.  
  15.  
  16. TableViewController    A general manager object.  A subclass of the Object class.  Performs miscellaneous         initialzations. 
  17.  
  18. BooleanFormatter    A subclass of DBFormatter.  Provides string display for boolean values and toggles these
  19.         values by double-clicking.
  20.         
  21.  
  22. Other Peculiarities
  23. Note that the OracleAdaptor.adaptor is hardlinked into the program. To do this, you just drag and drop the OracleAdaptor.adaptor folder from /NextLibrary/Adaptors onto the Libraries icon of the Project Builder's Files window. You also need to add libdbkit_s.a into the Libraries icon of Project Builder  
  24.  
  25. Topics Of Interest
  26.  
  27. - How to replace the format of your tableview columns with a subclass of DBFormatter
  28. See the files BooleanFormatter.[hm]
  29.  
  30. Change History
  31. September 1992        Created for 3.0 Gold