This is perl/DBI list - not a coldfusion/mssql list.  I would recommend buying 
a beginners book on writing database driven coldfusion apps as your starting 
point.  Or if you're insistant on cheating - have a look at 
www.google.com/codesearch [1]

Raf

[1] Not that I advocate this.



> -----Original Message-----
> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
> Sent: 23 October 2008 15:20
> To: [email protected]
> Subject: Simple TO-DO List Manager program
>
>
> Hello all
>
> I am doing a simple TO-DO list manager using Coldfusion 8 and
> the language and MSSQL as the database.? My Required Functionality is:
> ??? Add TODO
> ??? Remove TODO
> ??? Modify TODO
> ??? Delete TODO
> ??? View ALL TODO's
>
> I am asking for assistance in doing this program.? It is
> simple, but I'm new and not quite sure of what steps to
> take.? Thank you
>
>
> A Sample Schema:
>
>
> CREATE
> TABLE [dbo].[todo](
> [todoid] [int]
> IDENTITY(1,10 NOT NULL,
> [name] [varchar]
> (150) NOT NULL,
> [dueDate] [datetime]
> NOT NULL,
> [status] [bit]
> NOT NULL CONSTRAINT [DF_todo_status] DEFAULT ((0)),
>
> CONSTRAINT [PK_todo] PRIMARY KEY CLUSTERED ( [todoId] ASC
> )
> WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF,
> IGNORE_DUP_KEY = OFF,? ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS
> = ON, FILLFACTOR = 80 [PRIMARY]
> )
> ON [PRIMARY]
>
--------------------------------------------------------

NOTICE: If received in error, please destroy and notify sender. Sender does not 
intend to waive confidentiality or privilege. Use of this email is prohibited 
when received in error.

Reply via email to