result, _ := client.Query(`:UPDATE User SET verified:true WHERE id = 1`)// result = []map[string]any{// {"rows_affected": 1},// }fmt.Println("Updated rows:", result[0]["rows_affected"])
result, _ := client.Query(`:DELETE User WHERE status = "inactive"`)// result = []map[string]any{// {"rows_affected": 5},// }fmt.Println("Deleted rows:", result[0]["rows_affected"])
result, _ := client.Query(":COUNT User WHERE active = true")// result = []map[string]any{// {"count": 42},// }fmt.Println("Active users:", result[0]["count"])