Re: [SQLObject] is there a way to (re)set generator?
SQLObject is a Python ORM.
Brought to you by:
ianbicking,
phd
From: Oleg B. <ph...@ph...> - 2010-04-19 09:50:23
|
On Mon, Apr 19, 2010 at 06:34:37AM +0200, Petr Jake?? wrote: > I do not want anybody to find, how many rows were > inserted in the past in to the table.* At what level do you want to forbid to run SELECT COUNT(*)? if a user can connect to the DB and run queries on the table [s]he can run the query directly, right? > *I just wonder if there is a way to (re)set generators to the initial value > (1). In general, there is no way. The only way to reset a generator is to create a new generator. Oleg. -- Oleg Broytman http://phd.pp.ru/ ph...@ph... Programmers don't die, they just GOSUB without RETURN. |