Why are the two SQL methods using a different type for Args? Why not have them both declared 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
Sql.ExecQuery2(Query as String, StringArgs() as String)
Sql.ExecNonQuery2(Statement as String, Args as List)
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