Difference between revisions of "Midware TAppServer.Start"

From Overbyte
Jump to navigation Jump to search
(Created page with ' Main page -> Midware component reference -> TAppServer -> Start == Defin…')
 
Line 1: Line 1:
[[Midware | Main page]] -> [[Midware_Components_Reference | Midware component reference]] -> [[Midware_TAppServer | TAppServer]] -> [[Midware_TAppServer.Start | Start]]
+
[[Midware | Main page]] -> [[Midware_Components_Reference | Midware component reference]] -> [[Midware_TMWTable | TMWTable]] -> [[Midware_TMWTable.CreateBlobStream | CreateBlobStream]]
  
 
== Definition ==
 
== Definition ==
  
  '''property''' Start: '''Start''';
+
  '''function''' CreateBlobStream(Field:TField;Mode:TBlobStreamMode):TStream;virtual;
  
 
== Description ==
 
== Description ==
  
The start procedure will start the server. The server will accept new client connections. See also Stop.
+
Call CreateBlobStream to obtain a stream for reading and writing the value of the field specified by the Field parameter. The Mode parameter indicates whether the stream will be used for reading the field’s value (bmRead), writing the field’s value (bmWrite), or modifying the field’s value (bmReadWrite).

Revision as of 12:54, 6 May 2011

Main page -> Midware component reference -> TMWTable -> CreateBlobStream

Definition

function CreateBlobStream(Field:TField;Mode:TBlobStreamMode):TStream;virtual;

Description

Call CreateBlobStream to obtain a stream for reading and writing the value of the field specified by the Field parameter. The Mode parameter indicates whether the stream will be used for reading the field’s value (bmRead), writing the field’s value (bmWrite), or modifying the field’s value (bmReadWrite).