473,394 Members | 1,916 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,394 software developers and data experts.

Is MySQL what I need?

I'm developing with CF 5 and SQL Server 2000. I think they are both
great products. The major draw is their cost. I don't develop stand
alone products because anyone that wants to purchase them must also
purchase CF Server and SQL Server. So I run them as a hosted service.

MySQL is supposed to be free. If you are using this product, how do
you like it? What are you using for a front end?

I'd like to move toward developing software that some one can run on
their own webserver with the only cost being the software purchase.
That means the database and front end software need to be free (MySQL,
PHP, CGI). If the customer doesn't have these, they can download them
for free or small fee. What are some feasible alternatives to CF and
SQL Server?

BTW, is this the only programming newsgroup for MySQL?

Thanks,
Brett
Jul 19 '05 #1
9 1787
"Brett" <ac*****@cygen.com> wrote in message
news:c0**************************@posting.google.c om...
I'm developing with CF 5 and SQL Server 2000. I think they are both
great products. The major draw is their cost. I don't develop stand
alone products because anyone that wants to purchase them must also
purchase CF Server and SQL Server. So I run them as a hosted service.

MySQL is supposed to be free. If you are using this product, how do
you like it? What are you using for a front end?

I'd like to move toward developing software that some one can run on
their own webserver with the only cost being the software purchase.
That means the database and front end software need to be free (MySQL,
PHP, CGI). If the customer doesn't have these, they can download them
for free or small fee. What are some feasible alternatives to CF and
SQL Server?

BTW, is this the only programming newsgroup for MySQL?

Thanks,
Brett


I have been doing some stuff on the web with mysql & perl . I have some
programming background and I found it fairly easy to use.

Jay


Jul 19 '05 #2
I'm doing zope (zope.org) , python and mysql.
Getting rid of our MS /access/coldfusion/asp stuff eventually.
(hopefully sooner)

bobb
"Brett" <ac*****@cygen.com> wrote in message
news:c0**************************@posting.google.c om...
I'm developing with CF 5 and SQL Server 2000. I think they are both
great products. The major draw is their cost. I don't develop stand
alone products because anyone that wants to purchase them must also
purchase CF Server and SQL Server. So I run them as a hosted service.

MySQL is supposed to be free. If you are using this product, how do
you like it? What are you using for a front end?

I'd like to move toward developing software that some one can run on
their own webserver with the only cost being the software purchase.
That means the database and front end software need to be free (MySQL,
PHP, CGI). If the customer doesn't have these, they can download them
for free or small fee. What are some feasible alternatives to CF and
SQL Server?

BTW, is this the only programming newsgroup for MySQL?

Thanks,
Brett

Jul 19 '05 #3
Bobb,

I'm checking out the zope.org and python.org sites. Why use Python
rather than Perl, PHP, C++, ASP (ASP.NET), C# or some similar
scripting language?

Thanks,
Brett

"bobb" <ra*****@hotmail.com> wrote in message news:<4N******************@nwrdny03.gnilink.net>.. .
I'm doing zope (zope.org) , python and mysql.
Getting rid of our MS /access/coldfusion/asp stuff eventually.
(hopefully sooner)

bobb
"Brett" <ac*****@cygen.com> wrote in message
news:c0**************************@posting.google.c om...
I'm developing with CF 5 and SQL Server 2000. I think they are both
great products. The major draw is their cost. I don't develop stand
alone products because anyone that wants to purchase them must also
purchase CF Server and SQL Server. So I run them as a hosted service.

MySQL is supposed to be free. If you are using this product, how do
you like it? What are you using for a front end?

I'd like to move toward developing software that some one can run on
their own webserver with the only cost being the software purchase.
That means the database and front end software need to be free (MySQL,
PHP, CGI). If the customer doesn't have these, they can download them
for free or small fee. What are some feasible alternatives to CF and
SQL Server?

BTW, is this the only programming newsgroup for MySQL?

Thanks,
Brett

Jul 19 '05 #4
I first got turned onto python about 5 years ago... needless to say, I still
suck at it (IMO :) )
If you google groups on python, there's lots of debate on this topic.

What turns me on about it is it's object oriented, logical (for me), and
probably has the strongest programming community period. The gang on the
Zope list and the python list are extremely helpful... They also use tough
love when necessary. ;) (RTFM, for example)

examples of what specifically turned me on are.

1) Get windows wmi information w/ one line of code.
2) start a simple http server (for checking file system stuff) with one line
of code.
3) interfaces to mysql already built... easy to use.
4) zope is built on top of it... modules already exist for what I need...
Interfaces to rdbm's, mail servers, indexing, etc.
5) VERY GOOD error messaging (tracebacks) that point to code and line
problems specifically. no bogus errors(like vb)
6) cross platform (I dev on windows, run prod on solaris and linux and
OSX!!! )
7) Open source (no way am I buying ANOTHER Windows server license).. the MS
stuff is out of the question for me.
(Even though I have an MCSE, in which I got in 10 business days on a $1 bet
:) )
Hope that helps.

bobb

"Brett" <ac*****@cygen.com> wrote in message
news:c0**************************@posting.google.c om...
Bobb,

I'm checking out the zope.org and python.org sites. Why use Python
rather than Perl, PHP, C++, ASP (ASP.NET), C# or some similar
scripting language?

Thanks,
Brett

"bobb" <ra*****@hotmail.com> wrote in message

news:<4N******************@nwrdny03.gnilink.net>.. .
I'm doing zope (zope.org) , python and mysql.
Getting rid of our MS /access/coldfusion/asp stuff eventually.
(hopefully sooner)

bobb
"Brett" <ac*****@cygen.com> wrote in message
news:c0**************************@posting.google.c om...
I'm developing with CF 5 and SQL Server 2000. I think they are both
great products. The major draw is their cost. I don't develop stand
alone products because anyone that wants to purchase them must also
purchase CF Server and SQL Server. So I run them as a hosted service.

MySQL is supposed to be free. If you are using this product, how do
you like it? What are you using for a front end?

I'd like to move toward developing software that some one can run on
their own webserver with the only cost being the software purchase.
That means the database and front end software need to be free (MySQL,
PHP, CGI). If the customer doesn't have these, they can download them
for free or small fee. What are some feasible alternatives to CF and
SQL Server?

BTW, is this the only programming newsgroup for MySQL?

Thanks,
Brett

Jul 19 '05 #5
I first got turned onto python about 5 years ago... needless to say, I still
suck at it (IMO :) )
If you google groups on python, there's lots of debate on this topic.

What turns me on about it is it's object oriented, logical (for me), and
probably has the strongest programming community period. The gang on the
Zope list and the python list are extremely helpful... They also use tough
love when necessary. ;) (RTFM, for example)

examples of what specifically turned me on are.

1) Get windows wmi information w/ one line of code.
2) start a simple http server (for checking file system stuff) with one line
of code.
3) interfaces to mysql already built... easy to use.
4) zope is built on top of it... modules already exist for what I need...
Interfaces to rdbm's, mail servers, indexing, etc.
5) VERY GOOD error messaging (tracebacks) that point to code and line
problems specifically. no bogus errors(like vb)
6) cross platform (I dev on windows, run prod on solaris and linux and
OSX!!! )
7) Open source (no way am I buying ANOTHER Windows server license).. the MS
stuff is out of the question for me.
(Even though I have an MCSE, in which I got in 10 business days on a $1 bet
:) )
Hope that helps.

bobb

"Brett" <ac*****@cygen.com> wrote in message
news:c0**************************@posting.google.c om...
Bobb,

I'm checking out the zope.org and python.org sites. Why use Python
rather than Perl, PHP, C++, ASP (ASP.NET), C# or some similar
scripting language?

Thanks,
Brett

"bobb" <ra*****@hotmail.com> wrote in message

news:<4N******************@nwrdny03.gnilink.net>.. .
I'm doing zope (zope.org) , python and mysql.
Getting rid of our MS /access/coldfusion/asp stuff eventually.
(hopefully sooner)

bobb
"Brett" <ac*****@cygen.com> wrote in message
news:c0**************************@posting.google.c om...
I'm developing with CF 5 and SQL Server 2000. I think they are both
great products. The major draw is their cost. I don't develop stand
alone products because anyone that wants to purchase them must also
purchase CF Server and SQL Server. So I run them as a hosted service.

MySQL is supposed to be free. If you are using this product, how do
you like it? What are you using for a front end?

I'd like to move toward developing software that some one can run on
their own webserver with the only cost being the software purchase.
That means the database and front end software need to be free (MySQL,
PHP, CGI). If the customer doesn't have these, they can download them
for free or small fee. What are some feasible alternatives to CF and
SQL Server?

BTW, is this the only programming newsgroup for MySQL?

Thanks,
Brett

Jul 19 '05 #6
Sorry Brett... I replied to myself :)
"bobb" <ra*****@hotmail.com> wrote in message
news:3m***************@nwrdny01.gnilink.net...
I first got turned onto python about 5 years ago... needless to say, I still suck at it (IMO :) )
If you google groups on python, there's lots of debate on this topic.

What turns me on about it is it's object oriented, logical (for me), and
probably has the strongest programming community period. The gang on the
Zope list and the python list are extremely helpful... They also use tough
love when necessary. ;) (RTFM, for example)

examples of what specifically turned me on are.

1) Get windows wmi information w/ one line of code.
2) start a simple http server (for checking file system stuff) with one line of code.
3) interfaces to mysql already built... easy to use.
4) zope is built on top of it... modules already exist for what I need...
Interfaces to rdbm's, mail servers, indexing, etc.
5) VERY GOOD error messaging (tracebacks) that point to code and line
problems specifically. no bogus errors(like vb)
6) cross platform (I dev on windows, run prod on solaris and linux and
OSX!!! )
7) Open source (no way am I buying ANOTHER Windows server license).. the MS stuff is out of the question for me.
(Even though I have an MCSE, in which I got in 10 business days on a $1 bet :) )
Hope that helps.

bobb

"Brett" <ac*****@cygen.com> wrote in message
news:c0**************************@posting.google.c om...
Bobb,

I'm checking out the zope.org and python.org sites. Why use Python
rather than Perl, PHP, C++, ASP (ASP.NET), C# or some similar
scripting language?

Thanks,
Brett

"bobb" <ra*****@hotmail.com> wrote in message

news:<4N******************@nwrdny03.gnilink.net>.. .
I'm doing zope (zope.org) , python and mysql.
Getting rid of our MS /access/coldfusion/asp stuff eventually.
(hopefully sooner)

bobb
"Brett" <ac*****@cygen.com> wrote in message
news:c0**************************@posting.google.c om...
> I'm developing with CF 5 and SQL Server 2000. I think they are both
> great products. The major draw is their cost. I don't develop stand
> alone products because anyone that wants to purchase them must also
> purchase CF Server and SQL Server. So I run them as a hosted service. >
> MySQL is supposed to be free. If you are using this product, how do
> you like it? What are you using for a front end?
>
> I'd like to move toward developing software that some one can run on
> their own webserver with the only cost being the software purchase.
> That means the database and front end software need to be free (MySQL, > PHP, CGI). If the customer doesn't have these, they can download them > for free or small fee. What are some feasible alternatives to CF and
> SQL Server?
>
> BTW, is this the only programming newsgroup for MySQL?
>
> Thanks,
> Brett


Jul 19 '05 #7
Sorry Brett... I replied to myself :)
"bobb" <ra*****@hotmail.com> wrote in message
news:3m***************@nwrdny01.gnilink.net...
I first got turned onto python about 5 years ago... needless to say, I still suck at it (IMO :) )
If you google groups on python, there's lots of debate on this topic.

What turns me on about it is it's object oriented, logical (for me), and
probably has the strongest programming community period. The gang on the
Zope list and the python list are extremely helpful... They also use tough
love when necessary. ;) (RTFM, for example)

examples of what specifically turned me on are.

1) Get windows wmi information w/ one line of code.
2) start a simple http server (for checking file system stuff) with one line of code.
3) interfaces to mysql already built... easy to use.
4) zope is built on top of it... modules already exist for what I need...
Interfaces to rdbm's, mail servers, indexing, etc.
5) VERY GOOD error messaging (tracebacks) that point to code and line
problems specifically. no bogus errors(like vb)
6) cross platform (I dev on windows, run prod on solaris and linux and
OSX!!! )
7) Open source (no way am I buying ANOTHER Windows server license).. the MS stuff is out of the question for me.
(Even though I have an MCSE, in which I got in 10 business days on a $1 bet :) )
Hope that helps.

bobb

"Brett" <ac*****@cygen.com> wrote in message
news:c0**************************@posting.google.c om...
Bobb,

I'm checking out the zope.org and python.org sites. Why use Python
rather than Perl, PHP, C++, ASP (ASP.NET), C# or some similar
scripting language?

Thanks,
Brett

"bobb" <ra*****@hotmail.com> wrote in message

news:<4N******************@nwrdny03.gnilink.net>.. .
I'm doing zope (zope.org) , python and mysql.
Getting rid of our MS /access/coldfusion/asp stuff eventually.
(hopefully sooner)

bobb
"Brett" <ac*****@cygen.com> wrote in message
news:c0**************************@posting.google.c om...
> I'm developing with CF 5 and SQL Server 2000. I think they are both
> great products. The major draw is their cost. I don't develop stand
> alone products because anyone that wants to purchase them must also
> purchase CF Server and SQL Server. So I run them as a hosted service. >
> MySQL is supposed to be free. If you are using this product, how do
> you like it? What are you using for a front end?
>
> I'd like to move toward developing software that some one can run on
> their own webserver with the only cost being the software purchase.
> That means the database and front end software need to be free (MySQL, > PHP, CGI). If the customer doesn't have these, they can download them > for free or small fee. What are some feasible alternatives to CF and
> SQL Server?
>
> BTW, is this the only programming newsgroup for MySQL?
>
> Thanks,
> Brett


Jul 19 '05 #8
I first got turned onto python about 5 years ago... needless to say, I still
suck at it (IMO :) )
If you google groups on python, there's lots of debate on this topic.

What turns me on about it is it's object oriented, logical (for me), and
probably has the strongest programming community period. The gang on the
Zope list and the python list are extremely helpful... They also use tough
love when necessary. ;) (RTFM, for example)

examples of what specifically turned me on are.

1) Get windows wmi information w/ one line of code.
2) start a simple http server (for checking file system stuff) with one line
of code.
3) interfaces to mysql already built... easy to use.
4) zope is built on top of it... modules already exist for what I need...
Interfaces to rdbm's, mail servers, indexing, etc.
5) VERY GOOD error messaging (tracebacks) that point to code and line
problems specifically. no bogus errors(like vb)
6) cross platform (I dev on windows, run prod on solaris and linux and
OSX!!! )
7) Open source (no way am I buying ANOTHER Windows server license).. the MS
stuff is out of the question for me.
(Even though I have an MCSE, in which I got in 10 business days on a $1 bet
:) )
Hope that helps.

bobb

"Brett" <ac*****@cygen.com> wrote in message
news:c0**************************@posting.google.c om...
Bobb,

I'm checking out the zope.org and python.org sites. Why use Python
rather than Perl, PHP, C++, ASP (ASP.NET), C# or some similar
scripting language?

Thanks,
Brett

"bobb" <ra*****@hotmail.com> wrote in message

news:<4N******************@nwrdny03.gnilink.net>.. .
I'm doing zope (zope.org) , python and mysql.
Getting rid of our MS /access/coldfusion/asp stuff eventually.
(hopefully sooner)

bobb
"Brett" <ac*****@cygen.com> wrote in message
news:c0**************************@posting.google.c om...
I'm developing with CF 5 and SQL Server 2000. I think they are both
great products. The major draw is their cost. I don't develop stand
alone products because anyone that wants to purchase them must also
purchase CF Server and SQL Server. So I run them as a hosted service.

MySQL is supposed to be free. If you are using this product, how do
you like it? What are you using for a front end?

I'd like to move toward developing software that some one can run on
their own webserver with the only cost being the software purchase.
That means the database and front end software need to be free (MySQL,
PHP, CGI). If the customer doesn't have these, they can download them
for free or small fee. What are some feasible alternatives to CF and
SQL Server?

BTW, is this the only programming newsgroup for MySQL?

Thanks,
Brett

Jul 19 '05 #9
Sorry Brett... I replied to myself :)
"bobb" <ra*****@hotmail.com> wrote in message
news:3m***************@nwrdny01.gnilink.net...
I first got turned onto python about 5 years ago... needless to say, I still suck at it (IMO :) )
If you google groups on python, there's lots of debate on this topic.

What turns me on about it is it's object oriented, logical (for me), and
probably has the strongest programming community period. The gang on the
Zope list and the python list are extremely helpful... They also use tough
love when necessary. ;) (RTFM, for example)

examples of what specifically turned me on are.

1) Get windows wmi information w/ one line of code.
2) start a simple http server (for checking file system stuff) with one line of code.
3) interfaces to mysql already built... easy to use.
4) zope is built on top of it... modules already exist for what I need...
Interfaces to rdbm's, mail servers, indexing, etc.
5) VERY GOOD error messaging (tracebacks) that point to code and line
problems specifically. no bogus errors(like vb)
6) cross platform (I dev on windows, run prod on solaris and linux and
OSX!!! )
7) Open source (no way am I buying ANOTHER Windows server license).. the MS stuff is out of the question for me.
(Even though I have an MCSE, in which I got in 10 business days on a $1 bet :) )
Hope that helps.

bobb

"Brett" <ac*****@cygen.com> wrote in message
news:c0**************************@posting.google.c om...
Bobb,

I'm checking out the zope.org and python.org sites. Why use Python
rather than Perl, PHP, C++, ASP (ASP.NET), C# or some similar
scripting language?

Thanks,
Brett

"bobb" <ra*****@hotmail.com> wrote in message

news:<4N******************@nwrdny03.gnilink.net>.. .
I'm doing zope (zope.org) , python and mysql.
Getting rid of our MS /access/coldfusion/asp stuff eventually.
(hopefully sooner)

bobb
"Brett" <ac*****@cygen.com> wrote in message
news:c0**************************@posting.google.c om...
> I'm developing with CF 5 and SQL Server 2000. I think they are both
> great products. The major draw is their cost. I don't develop stand
> alone products because anyone that wants to purchase them must also
> purchase CF Server and SQL Server. So I run them as a hosted service. >
> MySQL is supposed to be free. If you are using this product, how do
> you like it? What are you using for a front end?
>
> I'd like to move toward developing software that some one can run on
> their own webserver with the only cost being the software purchase.
> That means the database and front end software need to be free (MySQL, > PHP, CGI). If the customer doesn't have these, they can download them > for free or small fee. What are some feasible alternatives to CF and
> SQL Server?
>
> BTW, is this the only programming newsgroup for MySQL?
>
> Thanks,
> Brett


Jul 19 '05 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

8
by: madcap | last post by:
Hi, Our company was looking for contract programmer to develop an internet/intranet application. We were approached by a freelancer who have quite a lot experience and his resume was...
0
by: Donald Tyler | last post by:
Then the only way you can do it that I can think of is to write a PHP script to do basically what PHPMyAdmin is trying to do but without the LOCAL in there. However to do that you would need to...
4
by: mikey | last post by:
Hi all, I'm having great problems trying to install the latest MySQl RPM package onto my Red Hat Linux OS. There is already MySQL v 3.0 pre-installed with the RH Linux distribution disk but I...
0
by: Mike Chirico | last post by:
Interesting Things to Know about MySQL Mike Chirico (mchirico@users.sourceforge.net) Copyright (GPU Free Documentation License) 2004 Last Updated: Mon Jun 7 10:37:28 EDT 2004 The latest...
15
by: Cheryl Langdon | last post by:
Hello everyone, This is my first attempt at getting help in this manner. Please forgive me if this is an inappropriate request. I suddenly find myself in urgent need of instruction on how to...
14
by: mistral | last post by:
Need php script to create mySQL database programmatically; since hosting configuration may not allow create database from script, script also need eliminate/rewrite all restrictions in appropriate...
6
Atli
by: Atli | last post by:
This is an easy to digest 12 step guide on basics of using MySQL. It's a great refresher for those who need it and it work's great for first time MySQL users. Anyone should be able to get...
221
Atli
by: Atli | last post by:
You may be wondering why you would want to put your files “into” the database, rather than just onto the file-system. Well, most of the time, you wouldn’t. In situations where your PHP application...
39
by: alex | last post by:
I've converted a latin1 database I have to utf8. The process has been: # mysqldump -u root -p --default-character-set=latin1 -c --insert-ignore --skip-set-charset mydb mydb.sql # iconv -f...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.