Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Here’s a screenshot for reference.

...

  1. Connect to Kyvos using the following command.

    Code Block
    con <- dbConnect(odbc::odbc(), driver = "Kyvos ODBC Driver", UserName = "username", PWD = "password", host = "192.168.8.190",  port=8081, HTTPPath = "kyvos/sql")
  2. Verify the above connection with the command below.

    Code Block
    dbIsValid(con)
    #Returns TRUE if connection is established else return FALSE.
  3. Run the queries using the following command.

    Code Block
    dbGetQuery(con,'Paste your SQL query here')
  4. After executing the queries close the connection using the dbDisconnect(con). command.

  5. Execute the dbIsValid(con) command to ensure that the connection is disconnected.