Thanks for the help, although i get an error, saying "DataError: value too
long for type character varying(2000)" when i am trying to save the
"Session.objects.get(session_
key=request.session.session_key)".
I checked my db and the "session_id" column is varchar(40) (which is the
default value
On Fri, Aug 17, 2012 at 1:28 PM, Sandeep kaur wrote:
> I am using session foreign key in my table.
> if not request.session.exists(request.session.session_key):
> request.session.create()
> profile.sess = request.session.session_key
> pro
You're Welcome. Glad to Help.
On Fri, Aug 17, 2012 at 2:28 PM, Sandeep kaur wrote:
> On Fri, Aug 17, 2012 at 1:39 PM, Amyth Arora
> wrote:
>> I think this is because you are passing it the "Session Key" instead
>> of the "Session Instance", you need to get the session instance and
>> then pass
On Fri, Aug 17, 2012 at 1:39 PM, Amyth Arora wrote:
> I think this is because you are passing it the "Session Key" instead
> of the "Session Instance", you need to get the session instance and
> then pass it to your function, Something like this:
>
> profile.sess = Session.objects.get(session_key
My mistake then, sorry about that!
Le 17 août 2012 10:34, "Tom Evans" a écrit :
> On Fri, Aug 17, 2012 at 9:12 AM, Thomas Orozco
> wrote:
> > Session key is the session 's primary key. Not the session itself.
> >
> > What you want to assign to your field is a session, not its key. So use
> > req
On Fri, Aug 17, 2012 at 9:12 AM, Thomas Orozco
wrote:
> Session key is the session 's primary key. Not the session itself.
>
> What you want to assign to your field is a session, not its key. So use
> request.session.
>
This would not work; request.session is a
django.contrib.sessions.backends,Se
I'm sorry, I have some trouble understanding exactly what you need, could
you please try and provide a bit more context ? :-)
Le 17 août 2012 10:27, "Sandeep kaur" a écrit :
> On Fri, Aug 17, 2012 at 1:42 PM, Thomas Orozco
> wrote:
> > Session key is the session 's primary key. Not the session i
On Fri, Aug 17, 2012 at 1:42 PM, Thomas Orozco
wrote:
> Session key is the session 's primary key. Not the session itself.
>
> What you want to assign to your field is a session, not its key. So use
> request.session.
>
> However.
>
> Please very careful when using FK' s to sessions, sessions are
Session key is the session 's primary key. Not the session itself.
What you want to assign to your field is a session, not its key. So use
request.session.
However.
Please very careful when using FK' s to sessions, sessions are meant to be
short lived, and could / should be deleted once they exp
I think this is because you are passing it the "Session Key" instead
of the "Session Instance", you need to get the session instance and
then pass it to your function, Something like this:
profile.sess = Session.objects.get(session_key=request.session.session_key)
On Fri, Aug 17, 2012 at 1:28 P
10 matches
Mail list logo