Click or drag to resize

CDB.CreateEx 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.

Namespace:  GeoEngine.Core.GXNet
Assembly:  geoengine.core.gxnet (in geoengine.core.gxnet.dll) Version: 2024.2.0.25
Syntax
public static void CreateEx(
	string file,
	int lines,
	int chans,
	int blobs,
	int users,
	int cache,
	string super,
	string password,
	int page
)

public static void CreateEx(
	string file,
	int lines,
	int chans,
	int blobs,
	int users,
	int cache,
	string super,
	string password,
	int page
)

Parameters

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