Re: DBMS that integrates well with object-oriented programming

2001-11-18 Thread Ilya Martynov
BH> After converting the data in my project from text files to MySQL BH> tables, things are certainly working more smoothly than they were BH> before, but since I use objects (in Perl, which barely supports BH> objects, but that's another story) I have to write a lot of annoyingly BH> repetitive

Re: DBMS that integrates well with object-oriented programming

2001-11-15 Thread Jeremy Zawodny
On Thu, Nov 15, 2001 at 03:18:58AM -0800, Bennett Haselton wrote: > > > >Hmm... I'm sure plenty of people would disagree strongly with your > >remark of bad OO support in Perl. But, that is beside the > >point. You could either search CPAN (http://www.cpan.org/) and see > >if you find what you nee

Re: DBMS that integrates well with object-oriented programming

2001-11-15 Thread Jeremy Zawodny
On Thu, Nov 15, 2001 at 01:49:31AM -0800, Bennett Haselton wrote: > > After converting the data in my project from text files to MySQL > tables, things are certainly working more smoothly than they were > before, Good to hear. > but since I use objects (in Perl, which barely supports objects, bu

Re: DBMS that integrates well with object-oriented programming

2001-11-15 Thread Michael T. Babcock
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 f

Re: DBMS that integrates well with object-oriented programming

2001-11-15 Thread Bennett Haselton
At 10:37 AM 11/15/2001 +, [EMAIL PROTECTED] wrote: >Dear Bennett, > >On Thu, 15 Nov 2001, Bennett Haselton wrote: > > After converting the data in my project from text files to MySQL > tables, > > things are certainly working more smoothly than they were before, but > since > > I use objects

Re: DBMS that integrates well with object-oriented programming

2001-11-15 Thread jaab
Dear Bennett, On Thu, 15 Nov 2001, Bennett Haselton wrote: > After converting the data in my project from text files to MySQL tables, > things are certainly working more smoothly than they were before, but since > I use objects (in Perl, which barely supports objects, but that's another > story)