THANK YOU A LOT, it works like a charm now :)

In fact, my hash wasn't calculated the same way before, and the hash wasn't
starting with a number, so i did'nt realized why it was malfunctioning.

Have a nice evening

Florent

On 11/15/06, Igor Tandetnik <[EMAIL PROTECTED]> wrote:

Florent THIERY <[EMAIL PROTECTED]> wrote:
> "create table %s (profileID char(32) etc...)" % (tableID)   # Where
> tableID is a 32 char hexstring (hash)
> 4b0c25789ab124628444951dd995fdcc in this case

Table name must be a proper identifier (begin with letter or underscore,
consist of letters, digits and underscores), or else enclosed in double
quotes. You attempt to create one whose name begins with a digit. Make
it

"create table T%s (profileID char(32) etc...)" % (tableID)
# or
"create table \"%s\" (profileID char(32) etc...)" % (tableID)

Igor Tandetnik



-----------------------------------------------------------------------------
To unsubscribe, send email to [EMAIL PROTECTED]

-----------------------------------------------------------------------------


Reply via email to