logo

class

sql::TableResource

sys::Obj
  sys::Resource
    sys::MemResource
      sql::TableResource
  1  //
  2  // Copyright (c) 2007, Brian Frank and Andy Frank
  3  // Licensed under the Academic Free License version 3.0
  4  //
  5  // History:
  6  //   29 Nov 07  Brian Frank  Creation
  7  //
  8  
  9  **
 10  ** TableResource models an SQL table as a Fan resource
 11  ** in the Uri namespace.  It serves as the namespace
 12  ** container for RowResources which map rows in an RDBMS
 13  ** to Fan objects.
 14  **
 15  class TableResource : MemResource
 16  {
 17  
 18    **
 19    ** Construct a resource to model a table.
 20    **
 21    new make(Uri uri)
 22      : super.make(uri, null)
 23    {
 24    }
 25  
 26  }

More Info

Slots