On my current project, my program does a lot of checking whether or not there are any records returned from several different SELECT queries. My question is, should I be dumping the query into an ADO recordset and checking if the .count property is greater than 0, or should I just continue to use dlookup and checking if it returns a null or not?
dlookup is a faster way to type the code for sure, but I'm curious as to whether or not there's a bunch of overhead with this function that I'm unaware of.
dlookup is a faster way to type the code for sure, but I'm curious as to whether or not there's a bunch of overhead with this function that I'm unaware of.