Re: [PHP] Re: Seeking a scheduling algorithm

2012-07-14 Thread tamouse mailing lists
On Jul 14, 2012 5:34 PM, "Bill Guion" wrote: > > On Jul 14, 2012, at 4:53 PM, php-general-digest-h...@lists.php.net wrote: > > > From: Tedd Sperling > > Subject: Seeking a scheduling algorithm > > Date: July 14, 2012 4:53:15 PM EDT > > To: php-general@lists.php.net > > > > > > Hi gang: > > > > Do

Re: [PHP] PDO: extend or encapsulate?

2012-07-14 Thread Marco Behnke
Am 14.07.12 10:09, schrieb Tony Marston: > wrote in message > news:1535031289.371987.1342162338279.javamail.open-xcha...@email.1und1.de... >> >> >> >> >> tamouse mailing lists hat am 13. Juli 2012 >> um 07:06 >> geschrieben: >> >>> It's Friday, so... >>> >>> Yes, it's true, I have just started loo

[PHP] Re: Seeking a scheduling algorithm

2012-07-14 Thread Bill Guion
On Jul 14, 2012, at 4:53 PM, php-general-digest-h...@lists.php.net wrote: > From: Tedd Sperling > Subject: Seeking a scheduling algorithm > Date: July 14, 2012 4:53:15 PM EDT > To: php-general@lists.php.net > > > Hi gang: > > Does anyone have a resource, or better yet code, to solve the schedu

[PHP] Seeking a scheduling algorithm

2012-07-14 Thread Tedd Sperling
Hi gang: Does anyone have a resource, or better yet code, to solve the scheduling problem described below? Let's say you have a week calendar that has openings between 8:00am to 5:00pm for Monday through Friday (40 hours). Then you have an assortment of appointments that must be scheduled into

Re: [PHP] PDO: extend or encapsulate?

2012-07-14 Thread Lester Caine
tamouse mailing lists wrote: I am rather agreeing with both of you. Back in the days I used to poke at Java, one of the caveats was to only inherit from abstract classes, and encapsulate final classes. It does make more sense to me that way. One option is to keep both drivers available ... ADOd

Re: [PHP] PDO: extend or encapsulate?

2012-07-14 Thread Tony Marston
wrote in message news:1535031289.371987.1342162338279.javamail.open-xcha...@email.1und1.de... tamouse mailing lists hat am 13. Juli 2012 um 07:06 geschrieben: It's Friday, so... Yes, it's true, I have just started looking at using PDO instead of mysqli -- a bit behind the times... My q

Re: [PHP] PDO: extend or encapsulate?

2012-07-14 Thread tamouse mailing lists
On Sat, Jul 14, 2012 at 12:04 AM, Paul M Foster wrote: > On Fri, Jul 13, 2012 at 12:06:22AM -0500, tamouse mailing lists wrote: > >> It's Friday, so... >> >> Yes, it's true, I have just started looking at using PDO instead of >> mysqli -- a bit behind the times... >> >> My question at this stage,