reset
Syntax
Description
resets
all Apache Cassandra® database connection options to their default values for all properties of the
opts = reset(opts)CassandraConnectionOptions object.
Examples
Create, configure, and test an Apache™ Cassandra® data source for a Cassandra database. Reset the Cassandra connection options to their default values. Then configure, test, and save the data source with different Cassandra connection options.
Create a Cassandra data source for a Cassandra database connection.
vendor = "Cassandra"; opts = databaseConnectionOptions("native",vendor)
opts =
CassandraConnectionOptions with properties:
DataSourceName: ""
Vendor: "Cassandra"
ContactPoints: "localhost"
PortNumber: 9042
SSLEnabled: false
LoginTimeout: 5
RequestTimeout: 12
opts is an CassandraConnectionOptions object with these properties:
DataSourceName— Name of the data sourceVendor— Database vendor nameContactPoints— Contact pointsPortNumber— Port numberSSLEnabled— SSL-enabled connectionLoginTimeout— Login timeoutRequestTimeout— Request timeout
Configure the data source by setting the Cassandra connection options for the data source CassandraDataSource, local host address for one node in the cluster, port number 9042, SSL encryption that is disabled, login timeout of 5 seconds, and request timeout of 12 seconds.
opts = setoptions(opts, ... "DataSourceName","CassandraDataSource", ... "ContactPoints","localhost","PortNumber",9042, ... "SSLEnabled",false,"LoginTimeout",5, ... "RequestTimeout",12)
opts =
CassandraConnectionOptions with properties:
DataSourceName: "CassandraDataSource"
Vendor: "Cassandra"
ContactPoints: "localhost"
PortNumber: 9042
SSLEnabled: false
LoginTimeout: 5
RequestTimeout: 12
The setoptions function sets the DataSourceName, ContactPoints, PortNumber, SSLEnabled, LoginTimeout, and RequestTimeout properties in the CassandraConnectionOptions object.
Test the database connection with a blank user name and password. The testConnection function returns the logical 1, which indicates the database connection is successful.
username = ""; password = ""; status = testConnection(opts,username,password)
status = logical
1
Reset the Cassandra connection options to their default values. The properties of the CassandraConnectionOptions object contain the default values.
opts = reset(opts)
opts =
CassandraConnectionOptions with properties:
DataSourceName: ""
Vendor: "Cassandra"
ContactPoints: "localhost"
PortNumber: 9042
SSLEnabled: false
LoginTimeout: 5
RequestTimeout: 12
Configure the data source by setting the Cassandra connection options for the data source CassandraDataSource, local host address for one node in the cluster, port number 9042, SSL encryption that is disabled, login timeout of 5 seconds, and request timeout of 20 seconds.
opts = setoptions(opts, ... "DataSourceName","CassandraDataSource", ... "ContactPoints","localhost","PortNumber",9042, ... "SSLEnabled",false,"LoginTimeout",5, ... "RequestTimeout",20)
opts =
CassandraConnectionOptions with properties:
DataSourceName: "CassandraDataSource"
Vendor: "Cassandra"
ContactPoints: "localhost"
PortNumber: 9042
SSLEnabled: false
LoginTimeout: 5
RequestTimeout: 20
The setoptions function sets the DataSourceName, ContactPoints, PortNumber, SSLEnabled, LoginTimeout, and RequestTimeout properties in the CassandraConnectionOptions object.
Test the database connection again.
username = ""; password = ""; status = testConnection(opts,username,password)
status = logical
1
Save the configured data source.
saveAsDataSource(opts)
Input Arguments
Database connection options, specified as a CassandraConnectionOptions
object.
Output Arguments
Database connection options, returned as a CassandraConnectionOptions
object.
Version History
Introduced in R2021a
See Also
Objects
Functions
MATLAB Command
You clicked a link that corresponds to this MATLAB command:
Run the command by entering it in the MATLAB Command Window. Web browsers do not support MATLAB commands.
웹사이트 선택
번역된 콘텐츠를 보고 지역별 이벤트와 혜택을 살펴보려면 웹사이트를 선택하십시오. 현재 계신 지역에 따라 다음 웹사이트를 권장합니다:
또한 다음 목록에서 웹사이트를 선택하실 수도 있습니다.
사이트 성능 최적화 방법
최고의 사이트 성능을 위해 중국 사이트(중국어 또는 영어)를 선택하십시오. 현재 계신 지역에서는 다른 국가의 MathWorks 사이트 방문이 최적화되지 않았습니다.
미주
- América Latina (Español)
- Canada (English)
- United States (English)
유럽
- Belgium (English)
- Denmark (English)
- Deutschland (Deutsch)
- España (Español)
- Finland (English)
- France (Français)
- Ireland (English)
- Italia (Italiano)
- Luxembourg (English)
- Netherlands (English)
- Norway (English)
- Österreich (Deutsch)
- Portugal (English)
- Sweden (English)
- Switzerland
- United Kingdom (English)