 | CDBCreate Method |
This method makes a brand new database of the specified size.
The database is opened in ReadWrite Mode.
Namespace:
GeoEngine.Core.GXNetX
Assembly:
geoengine.core.gxnetx (in geoengine.core.gxnetx.dll) Version: 2024.2.0.25
Syntaxpublic static void Create(
CGXNETCore gxNetShared,
string file,
int lines,
int chans,
int blobs,
int users,
int cache,
string super,
string password
)
public static void Create(
CGXNETCore gxNetShared,
string file,
int lines,
int chans,
int blobs,
int users,
int cache,
string super,
string password
)
Public Shared Sub Create (
gxNetShared As CGXNETCore,
file As String,
lines As Integer,
chans As Integer,
blobs As Integer,
users As Integer,
cache As Integer,
super As String,
password As String
)
Public Shared Sub Create (
gxNetShared As CGXNETCore,
file As String,
lines As Integer,
chans As Integer,
blobs As Integer,
users As Integer,
cache As Integer,
super As String,
password As String
)
public:
static void Create(
CGXNETCore^ gxNetShared,
String^ file,
int lines,
int chans,
int blobs,
int users,
int cache,
String^ super,
String^ password
)
public:
static void Create(
CGXNETCore^ gxNetShared,
String^ file,
int lines,
int chans,
int blobs,
int users,
int cache,
String^ super,
String^ password
)
static member Create :
gxNetShared : CGXNETCore *
file : string *
lines : int *
chans : int *
blobs : int *
users : int *
cache : int *
super : string *
password : string -> unit
static member Create :
gxNetShared : CGXNETCore *
file : string *
lines : int *
chans : int *
blobs : int *
users : int *
cache : int *
super : string *
password : string -> unit
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 ""
See Also