Chili.Opf3 Send comments on this topic.
ToCompiledQuery Method
See Also 
Chili.Opf3.Query Namespace > SqlQuery Class : ToCompiledQuery Method




storage
Class that implements the IStorage interface. The query is executed on that storage.
Converts the IQuery to an CompiledQuery that is then executed on a specific storage.

Syntax

Visual Basic (Declaration) 
Public Function ToCompiledQuery( _
   ByVal storage As IStorage _
) As CompiledQuery
Visual Basic (Usage)Copy Code
Dim instance As SqlQuery
Dim storage As IStorage
Dim value As CompiledQuery
 
value = instance.ToCompiledQuery(storage)
C# 
public CompiledQuery ToCompiledQuery( 
   IStorage storage
)
Managed Extensions for C++ 
public: CompiledQuery* ToCompiledQuery( 
   IStorage* storage
) 
C++/CLI 
public:
CompiledQuery^ ToCompiledQuery( 
   IStorage^ storage
) 

Parameters

storage
Class that implements the IStorage interface. The query is executed on that storage.

Return Value

A new CompiledQuery that has been generated using this instance.

Exceptions

ExceptionDescription
ArgumentNullExceptionStorage is null.

Requirements

Platforms: Windows 2000, Windows XP family, Windows Server 2003 family, Windows Vista family

See Also