Usage

Usage example

from tiledb.cloud.sql.tiledb_connection import TileDBConnection

connection = TileDBConnection()
cursor = connection.cursor()
cursor.execute("SELECT * from `tiledb://TileDB-Inc/quickstart_dense`")

row = cursor.fetchone()
while row:
    print(row)
    row = cursor.fetchone()

print(cursor.description())

Last updated