On Thu, Nov 15, 2001 at 01:49:31AM -0800, Bennett Haselton wrote:
> my $user = user.CreateFromTableRow("bennett");
> $user.sendReminderEmails();
> $user.emailaddress = '[EMAIL PROTECTED]';
 
You would lose some indexing features, etc., but you could easily use a 
language like Python that allows for object serialization and simply 
store the serialized objects in the database (look up 'pickle' on 
python.org).  This is also true with PHP.

1) Create object (class)
2) Use object
3) Serialize & store object

later ...

4) Fetch & deserialize object
5) Use object
6) Re-serialize and store object
-- 
Michael T. Babcock
CTO, FibreSpeed Ltd.

---------------------------------------------------------------------
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/           (the list archive)

To request this thread, e-mail <[EMAIL PROTECTED]>
To unsubscribe, e-mail <[EMAIL PROTECTED]>
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php

Reply via email to