Artifact c551813a70c9652fe8703f0988ed22c46e42ac6d:
- File
application/modules/module1/models/DbTable/People.tcl
— part of check-in
[5eb77fc958]
at
2010-05-26 21:01:39
on branch trunk
— initial version
git-svn-id: https://atwf.svn.sourceforge.net/svnroot/atwf@426 3ddb7fe1-eb8e-4980-8f37-d9e37380b5db (user: arnulf@wiedemann-pri.de size: 751)
#************************************************************************* #* #* 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] } }