Android Question DBUtils SQL Args Parameter Question

Widget

Well-Known Member
Licensed User
Longtime User
Why are the two SQL methods using a different type for Args? Why not have them both declared as List?

Sql.ExecQuery2(Query as String, StringArgs() as String)
Sql.ExecNonQuery2(Statement as String, Args as List)​

I only mention this because then my own subs can use "Args as List" parameters instead of mixing them up depending on what Sql method is going to be called.

TIA
 
Top