haXe API Documentation
Back |
Indexclass neko.db.Manager<T>
Available in neko
SPOD Manager : the persistent object database manager. See the tutorial on
haXe website to learn how to use SPOD.
- function new(classval : Class<T>) : Void
- function all(?lock : Bool) : List<T>
- function count(?x : { }) : Int
- function dbClass() : Class<Dynamic>
- function delete(x : { }) : Void
- function get(id : Int, ?lock : Bool) : T
- function getWithKeys(keys : { }, ?lock : Bool) : T
- function object(sql : String, lock : Bool) : T
- function objects(sql : String, lock : Bool) : List<T>
- function quote(s : String) : String
- function result(sql : String) : Dynamic
- function results<T>(sql : String) : List<T>
- function search(x : { }, ?lock : Bool) : List<T>
- function setLockMode(exclusive : Bool, readShared : Bool) : Void
- static var cnx(default,setConnection) : Connection
- static function cleanup() : Void
- static function initialize() : Void
Back |
Index