nim-ladybug/tests/connection/t_can_set_connection_query_timeout.nim
mahlon 1ed442a68a Start adding tests, using testament.
FossilOrigin-Name: 6f368f0d303c65000c74f346b7bc39ffca964aff7767c60be2384739e5dc4d72
2025-03-18 02:21:06 +00:00

12 lines
236 B
Nim

# vim: set et sta sw=4 ts=4 :
import kuzu
let db = newKuzuDatabase()
let conn = db.connect
# There is currently no getter for this, so
# we'll just have to assume a lack of
# exception/error means success.
conn.queryTimeout( 1000 )