RE: [newbie post] linked lists..

2002-03-29 Thread adam nelson
I think you need to be more detailed. What is your goal? Let's work from there. -Original Message- From: Daniel Jarrett [mailto:[EMAIL PROTECTED]] Sent: Friday, March 29, 2002 3:19 AM To: [EMAIL PROTECTED] Subject: [newbie post] linked lists.. is there any way of doing a l

Re: [newbie post] linked lists..

2002-03-29 Thread Joel Rees
Hi Daniel, You wrote: > what i'm trying to do is have one table for a member base, and have each > member capable of having a list of items of a varying number. > when i first thought about doing this i thought there may have been a field > type that would act as a linked list.. kinda like a set

Re: [newbie post] linked lists..

2002-03-29 Thread DL Neil
e are some good books including the DuBible ('MySQL' by Paul DuBois). Regards, =dn - Original Message - From: "Daniel Jarrett" <[EMAIL PROTECTED]> To: "Joseph Jude" <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: 29 March 2002 09:36 Subj

Re: [newbie post] linked lists..

2002-03-29 Thread Daniel Jarrett
e" <[EMAIL PROTECTED]> To: "Daniel Jarrett" <[EMAIL PROTECTED]> Sent: Friday, March 29, 2002 8:01 PM Subject: Re: [newbie post] linked lists.. > i didn't understand you. > it is going to depend on what complexity you are going to put into the list > create

Re: [newbie post] linked lists..

2002-03-29 Thread Daniel Jarrett
for first node > nextlink = 0 for last node > > Hope this helps > Joseph > > > > - Original Message - > From: "Daniel Jarrett" <[EMAIL PROTECTED]> > To: <[EMAIL PROTECTED]> > Sent: Friday, March 29, 2002 9:19 AM > Subject: [newbie post]

Re: [newbie post] linked lists..

2002-03-29 Thread Joseph Jude
: "Daniel Jarrett" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, March 29, 2002 9:19 AM Subject: [newbie post] linked lists.. > is there any way of doing a linked list in mysql.. > ? > > the only alternative i've got is to have a table with a fixed

[newbie post] linked lists..

2002-03-29 Thread Daniel Jarrett
is there any way of doing a linked list in mysql.. ? the only alternative i've got is to have a table with a fixed number of columns liike this item1 item2 item3 item4...etc is this the only way to do what i'm trying to do. does anyone get what i'm on about? cheers dan ---