get( id : Int, lock : Bool ) : T Gets a record specified by its unique integer identifier
and returns a SPOD object.
GetWithKeys( keys : Dynamic, lock :
Bool ) : T
Gets a record specified by one or more fields representing
the record identifier and returns a SPOD
object.
object( sql : String, lock : Bool ) :
T
Executes a given SQL string and returns a SPOD
object.
objectToString( spod : T ) :
String
Converts a given SPOD object to a string.
objects( sql : String, lock : Bool ) :
List < T >
Executes a given SQL string and returns a list of SPOD
objects.
quote( val : String ) : String Escapes quotes in a string for use in a SQL string.
result( sql : String ) : Dynamic Returns a non - SPOD object from a given SQL string.
Works in the same way as using the traditional
ResultSet class.
results < T > ( sql : String ) :
List < T >
Returns a list of non - SPOD objects from a given SQL
string. Works in the same way as using the traditional
ResultSet class.
search( keys : Dynamic, lock :
Bool ) : List < T >
Returns a list of SPOD objects from a series of
conditions held as key/value pairs.
Pages:
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576