ATWF A Tcl Web Framwork

Artifact [c551813a70]
Login

Artifact [c551813a70]

Artifact c551813a70c9652fe8703f0988ed22c46e42ac6d:


#*************************************************************************
#*
#*  last change: $Author: wiede $ $Date: 2009-12-05 17:46:51 +0200 (Sat, 05 Dec 2009) $
#*
#*  The Contents of this file are made available subject to the terms of
#*  the following license
#*
#* 	- BSD License
#*
#*	see file license.terms in the home directory
#*
#*  Copyright 2009 Arnulf Wiedemann
#*
#*  Author: Arnulf Wiedemann
#*
#*  Contributor(s): 
#*
#************************************************************************/

::itcl::extendedclass ::Module1::Model::DbTable::People {
    inherit ::ATWF::Db::Table

    constructor {} {
        set _name people
	chain
    } {
    }

    public method getRows {where} {
         return [fetchAll $where]
    }
}