| QdbCluster Constructor (String, String, String, String, Int32) |
Connects securely to a quasardb database.
Namespace:
Quasardb
Assembly:
Quasardb (in Quasardb.dll) Version: 3.15.0.0 (3.15.0.0)
Syntax public QdbCluster(
string uri,
string clusterPublicKey,
string userName,
string userPrivateKey,
int parallelismCount
)
Public Sub New (
uri As String,
clusterPublicKey As String,
userName As String,
userPrivateKey As String,
parallelismCount As Integer
)
Parameters
- uri
- Type: SystemString
The URI of the quasardb database. - clusterPublicKey
- Type: SystemString
Cluster public key used for database authentication. - userName
- Type: SystemString
User name used for connection. - userPrivateKey
- Type: SystemString
User private key used for connection. - parallelismCount
- Type: SystemInt32
Number of threads.
Value of 0 means the number of logical processor cores divided by two.
See Also