Ejemplo n.º 1
0
def uncached_get_mosaiq_cursor(server):
    password_input = create_user_input(server, input_type="password")
    user_input = create_user_input(server)

    _, cursor = msq_connect.single_connect(server,
                                           user_input=user_input,
                                           password_input=password_input,
                                           output=st.write)
    return cursor
Ejemplo n.º 2
0
def get_mosaiq_cursor(server):
    _, cursor = msq_connect.single_connect(server)
    return cursor