Displaying 3 results from an estimated 3 matches for "hashid".
Did you mean:
hashed
2007 Oct 05
11
Session handling busted on Oracle
...1.5
I''d submit this as a bug, but the tracker says I''m forbidden, so here
you go.
The first problem is that the sql to create the sessions table is
broken. This is what it tried to send:
CREATE TABLE sessions (
id NUMBER(38) NOT NULL PRIMARY KEY (38), --> Problem here
hashid VARCHAR2(32),
created_at DATE,
ivars CLOB DEFAULT empty_clob()
)
The problem is that second "(38)" after "PRIMARY KEY". So, I removed
that and created the table manually.
The next problem was a missing Oracle sequence (which I had no idea was
required, but ok). I figured...
2007 Oct 09
4
Camping and sessions proposal.
Hi Campers,
from the discussions gathered around, the current Camping sessions
don''t seem to be satisfying. ActiveRecord doesn''t seem to handle
hashid as an identifier, plus it doesn''t seem to be fully consistent
across the various RDBMS. On the other hand, the scope of the project
does not permit to implement all kind of client persistence. Secure
sessions with cross-process persistence is not that easy. You probably
would like to link...
2007 Oct 08
0
Camping-list Digest, Vol 18, Issue 1
...g, but the tracker says I''m forbidden, so here
> you go.
>
> The first problem is that the sql to create the sessions table is
> broken. This is what it tried to send:
>
> CREATE TABLE sessions (
> id NUMBER(38) NOT NULL PRIMARY KEY (38), --> Problem here
> hashid VARCHAR2(32),
> created_at DATE,
> ivars CLOB DEFAULT empty_clob()
> )
>
> The problem is that second "(38)" after "PRIMARY KEY". So, I removed
> that and created the table manually.
>
> The next problem was a missing Oracle sequence (which I had no...