For the complete documentation index, see llms.txt. This page is also available as Markdown.

ExecuteQuery

CassandraDB Execute operation.

Task version: 1.0.0

Required Frends version: 5.5+

Required .NET version: 6.0

Compatible Agents: Crossplatform

Task Parameters

Name
Description

AuthenticationMethods : AuthenticationMethods

Authentication method.

Possible values:

  • None: Authentication method.

  • PlainTextAuthProvider: Authentication method.

  • DsePlainTextAuthProvider: Authentication method.

Default: 1 Example: AuthenticationMethods.PlainTextAuthProvider

UseSsl : Boolean

Use Ssl.

Default: False Example: false

X509CertificateFilePath : String

X509 certificate location.

Default: - Example: c:\temp

🗝X509CertificatePassword : String

X509 certificate's password.

Default: - Example: FooBar

Username : String

Username.

Default: - Example: Foo

Password : String

Password.

Default: - Example: Bar

AsUser : String

Connect with 'Input.Username' credentials, but will act as 'Input.AsUser'.

Default: - Example: Foo2

ContactPoints : ContactPoint[]

Contact point(s).

Default: - Example: Object{127.0.0.1}

Port : Int32

Port.

Default: 9042 Example: 9042

Keyspace : String

Keyspace (Case-sensitive).

Default: - Example: foo

Query : String

Query to execute.

Default: - Example: SELECT bar FROM foo

Task Result

Name
Description

Success : Boolean

True if query ran successfully. Example: true

QueryResults : JToken

Query results. Only SELECT query contain values. Example: JToken

Warnings : List<String>

Returns the server-side warnings for this query. This feature is only available for Cassandra 2.2 or above; with lower versions, this property always returns null. Example: List { "warning1", "warning2" }

Task Changelog

Changelog for Task Frends.CassandraDB.ExecuteQuery.

Changelog

[1.0.0] - 2023-10-30

Added

  • Initial implementation

Last updated

Was this helpful?