[This topic is pre-release documentation and is subject to change in future releases. Blank topics are included as placeholders.]

If set to true, db4o will try to optimize native queries dynamically at query execution time, otherwise it will run native queries in unoptimized mode as SODA evaluations.

Namespace: Db4objects.Db4o.Config
Assembly:   Db4objects.Db4o (in Db4objects.Db4o.dll)

Syntax

Visual Basic (Declaration)
Sub OptimizeNativeQueries ( _
	optimizeNQ As Boolean _
)
C#
void OptimizeNativeQueries (
	bool optimizeNQ
)
Visual C++
void OptimizeNativeQueries (
	bool optimizeNQ
)

Parameters

optimizeNQ
System.Boolean
true, if db4o should try to optimize native queries at query execution time, false otherwise

Remarks

If set to true, db4o will try to optimize native queries dynamically at query execution time, otherwise it will run native queries in unoptimized mode as SODA evaluations. On the Java platform the jars needed for native query optimization (db4o-X.x-nqopt.jar, bloat-X.x.jar) have to be on the classpath at runtime for this switch to have effect.

The default setting is
 Copy imageCopy Code
true
.