Sorry for the typo, the variable for cursor in code sample should be
"cursor" instead of "Cursor".
> 1) Correct usage
>
> Cursor = conn.parse("INSERT INTO test_table VALUES(:name, :age)")
>
Should be:
cursor = conn.parse("INSERT INTO test_table VALUES(:name, :age)")
Liming