Click or drag to resize
CDBCreateEx Method
This method makes a brand new database of the specified size. The database is opened in ReadWrite Mode. Also allows you to set paging size.

Available since Oasis montaj version: 5.0
License: Available to anyone.  

Namespace: GeoEngine.Core.GXNetX
Assembly: geoengine.core.gxnetx (in geoengine.core.gxnetx.dll)
Syntax
public static void CreateEx(
	CGXNETCore gxNetShared,
	string file,
	int lines,
	int chans,
	int blobs,
	int users,
	int cache,
	string super,
	string password,
	int page
)

Parameters

gxNetShared
Type: GeoEngine.Core.GXNetXCGXNETCore
A shared CGXNETCore
file
Type: SystemString
Name of the Database File to Create
lines
Type: SystemInt32
Max Lines in the Database (200)
chans
Type: SystemInt32
Max Channels in the Database (50)
blobs
Type: SystemInt32
Max Blobs in the Database (Channels+Lines+20)
users
Type: SystemInt32
Max Users in the Database (10)
cache
Type: SystemInt32
Number of Erase Caches (100)
super
Type: SystemString
Name of the Super User "SUPER"
password
Type: SystemString
Password of the Super User ""
page
Type: SystemInt32
Page Size Must be (64,128,256,512,1024,2048,4096) normally 1024
See Also