Viewing 5 posts - 1 through 5 (of 5 total)
have him add a Dispose Method to the module to handle all the module scoped objects
and end each function with
dispose()
return moDS
Public sub Dispose()
moSelCmd = nothing
moDA = nothing
moDataConn.close
modataconn = nothing
April 18, 2006 at 1:38 pm
they wont be the same if all users dont have subscriptions. doing a left join should be the same i think.
April 18, 2006 at 1:23 pm
it would seem your data table has to have customer, period, goal in it and you should just be able to join it.
select customername, programname, goalname,
customers c, programs p,...
April 18, 2006 at 1:14 pm
went thruough all of them and none were set to autoclose
didnt think to look for it right away because if it was closing i would expect to see starting database appear...
December 19, 2005 at 3:40 pm
select clientid, coursedate, max([course code]) coursecode
from [course bookings] b,
( SELECT [client id] clientid, MAX([course date]) coursedate
FROM dbo.[course bookings]
GROUP BY [client id]
) as d
where d.clientid = b.[client id]...
February 20, 2004 at 11:44 am
Viewing 5 posts - 1 through 5 (of 5 total)