I'm pretty new to ASP and I'm solving following problem:
(please don't laugh if it's stupid or so simple)
Every code I write into <% %> tags in some .asp file is run ONLY when some user (client) "wants" the page. I need to write some code that is run every 5 minutes, for example, and...
I need to SELECT about five Count(*)s in one query - something like
SELECT Count(*) FROM table1, Count(*) FROM table2; etc.
Anybody knows how to do this ??
Thanks much, Hooker
I'm using MS Access database and I need to use my own functions in SELECT query, like this:
SELECT SomeTable.Name AS Name, MyFunction(SomeTable.Value) AS Result FROM SomeTable;
In access, I created some module and into that module I wrote the function like this: (in VB)
Sub MyFunction(value...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.