Re: Looking for a language/framework

2006-04-12 Thread Azolex
Alex Martelli wrote: > Jeffrey Froman <[EMAIL PROTECTED]> wrote: > >> Alex Martelli wrote: >> >>> I've never seen an "object-relational mapping" (technical >>> term for cruft that tries to avoid people having to learn and use SQL) >>> which doesn't drive me into a murderous, foam-at-mouth rage in

Re: Looking for a language/framework

2006-04-11 Thread Gregor Horvath
Magnus Lycka schrieb: > As I said, ORMs have their uses, but it seems to me that a reason for > many people to use ORMs is to avoid having to properly understand the > way relational databases work, and that means they will never use the So is the reason for using Python for many people to avoid

Re: Looking for a language/framework

2006-04-11 Thread Magnus Lycka
Gregor Horvath wrote: > Scott David Daniels schrieb: > >> Using a relational DBMS is most definitely _not_ premature optimization. >> A relational system provides a way to store data so that it is later > > I did not mean that using a relational DBMS is premature optimization > but not using a OR

Re: Looking for a language/framework

2006-04-01 Thread Gregor Horvath
Scott David Daniels schrieb: > Using a relational DBMS is most definitely _not_ premature optimization. > A relational system provides a way to store data so that it is later I did not mean that using a relational DBMS is premature optimization but not using a ORM because of performance considera

Re: Looking for a language/framework

2006-04-01 Thread Scott David Daniels
Gregor Horvath wrote: >> But what you overlook is SQL's strength: >> >> SQL can be translated into _very_ efficient query plans w/o changing >> the SQL. SQL's query optimizers (more properly, de-pessimizers) give > > Premature optimization is the root of all evil. > > On the top level of an

Re: Looking for a language/framework

2006-03-31 Thread Gregor Horvath
> > But what you overlook is SQL's strength: > > SQL can be translated into _very_ efficient query plans w/o changing > the SQL. SQL's query optimizers (more properly, de-pessimizers) give Premature optimization is the root of all evil. On the top level of an appliciation the goal is to o

Re: Looking for a language/framework

2006-03-31 Thread Ravi Teja
Agreed. Mine was hardly a complete list. Another bit I lost is keeping data operations close to the database. I am more likely to use multiple languages/frameworks over the same database than change databases for the same application. I actually prefer functions and procedures within the DB (even

Re: Looking for a language/framework

2006-03-31 Thread Scott David Daniels
Ravi Teja wrote: >> ... I've never seen an "object-relational mapping" (technical term for >> cruft that tries to avoid people having to learn and use SQL) which >> doesn't drive me into a murderous, foam-at-mouth rage in a very >> short time -- I *WANT* my SQL, I *LOVE* SQL, it's *WAY* more powerf

Re: Looking for a language/framework

2006-03-31 Thread Ravi Teja
> For example, I've never seen an "object-relational mapping" (technical > term for cruft that tries to avoid people having to learn and use SQL) > which doesn't drive me into a murderous, foam-at-mouth rage in a very > short time -- I *WANT* my SQL, I *LOVE* SQL, it's *WAY* more powerful > and sui

Re: Looking for a language/framework

2006-03-31 Thread walterbyrd
I am presently looking at a commercial product called dbqwiksite. I generates php code. I know that sounds lame, but the demos were impressive. If I could get the product to work like they show in the demos it would be great. It uses ODBC to connect to a mysql database; but I can't get it to wor

Re: Looking for a language/framework

2006-03-31 Thread walterbyrd
I am presently looking at a commercial product called dbqwiksite. I generates php code. I know that sounds lame, but the demos were impressive. If I could get the product to work like they show in the demos it would be great. It uses ODBC to connect to a mysql database; but I can't get it to wor

Re: Looking for a language/framework

2006-03-30 Thread [EMAIL PROTECTED]
Actually I recently went from a managed hosting to a virtual host via XEN, it's been great value for the cost -- http://mail.python.org/mailman/listinfo/python-list

Re: Looking for a language/framework

2006-03-30 Thread Magnus Lycka
Steve Juranich wrote: > [EMAIL PROTECTED] wrote: > >> As far as hosting, I also know >> where Zope/Plone hosting from 7.95 a month - although the host doesn't >> list it on their ads, they do use and host it. > > Which host would this be? I'm currently exploring some options for getting > a Zope

Re: Looking for a language/framework

2006-03-29 Thread Alex Martelli
Jeffrey Froman <[EMAIL PROTECTED]> wrote: > Alex Martelli wrote: > > > I've never seen an "object-relational mapping" (technical > > term for cruft that tries to avoid people having to learn and use SQL) > > which doesn't drive me into a murderous, foam-at-mouth rage in a very > > short time -- I

Re: Looking for a language/framework

2006-03-29 Thread Jeffrey Froman
Alex Martelli wrote: > I've never seen an "object-relational mapping" (technical > term for cruft that tries to avoid people having to learn and use SQL) > which doesn't drive me into a murderous, foam-at-mouth rage in a very > short time -- I WANT my SQL, I LOVE SQL, it's WAY more powerful > and

Re: Looking for a language/framework

2006-03-29 Thread [EMAIL PROTECTED]
ocssolutions.com offers hosting solutions and will host Zope -- http://mail.python.org/mailman/listinfo/python-list

Re: Looking for a language/framework

2006-03-29 Thread bruno at modulix
walterbyrd wrote: >>You can bet it'll be plain old cgi - possibly with an outdated Pyton version. > > I think you are right. In practical terms, what does that mean? Will I > not be able to use modules? Will I not be able to use frameworks? It means that you will be limited to what can run with

Re: Looking for a language/framework

2006-03-28 Thread Nick Craig-Wood
walterbyrd <[EMAIL PROTECTED]> wrote: > Ideally, I would like to be able to develop a database driven web-app, > in much the same manner as I could develop an ms-access app. As much as > I dislike msft, I have to admit, an ms-access app can be put together > quickly, without any steep learning

Re: Looking for a language/framework

2006-03-28 Thread Steve Juranich
[EMAIL PROTECTED] wrote: > As far as hosting, I also know > where Zope/Plone hosting from 7.95 a month - although the host doesn't > list it on their ads, they do use and host it. Which host would this be? I'm currently exploring some options for getting a Zope site hosted. Thanks much. -- Ste

Re: Looking for a language/framework

2006-03-28 Thread [EMAIL PROTECTED]
As far as languages go, Python seems a far better choice than php or perl based solutions. I haven't tried Ruby - so I can't comment. The Zope framework for python has been remarkably productive for me both with and wtihout plone(CMF modules and a look and feel on top of Zope). The documentation

Re: Looking for a language/framework

2006-03-28 Thread walterbyrd
> You can bet it'll be plain old cgi - possibly with an outdated Pyton version. I think you are right. In practical terms, what does that mean? Will I not be able to use modules? Will I not be able to use frameworks? > Which frameworks have you looked at ? django, turbogears, cheetah, cherrypy,

Re: Looking for a language/framework

2006-03-28 Thread bruno at modulix
walterbyrd wrote: > Way back when, I got a lot of training and experience in highly > structued software development. These days, I dabble with > web-development, but I may become more serious. > > I consider php to be an abombination, the backward compatibility issues > alone are reason enough t

Re: Looking for a language/framework

2006-03-28 Thread Alex Martelli
walterbyrd <[EMAIL PROTECTED]> wrote: ... > I consider php to be an abombination, the backward compatibility issues > alone are reason enough to make me hate it. Rail looks promising, but > it's difficult to find inexpensive hosting that supports rails. What's your budget? DreamHost offers Rai

Looking for a language/framework

2006-03-28 Thread walterbyrd
Way back when, I got a lot of training and experience in highly structued software development. These days, I dabble with web-development, but I may become more serious. I consider php to be an abombination, the backward compatibility issues alone are reason enough to make me hate it. Rail looks