| Author |
Topic Search Topic Options
|
aero
Groupie
Joined: 21 May 2003
Location: Denmark
Status: Offline
Points: 80
|
Post Options
Thanks(0)
Quote Reply
Topic: MySQL vs MS Access Posted: 01 July 2003 at 4:20pm |
Hi.
is MySQL better than MSA !??? Why !!!
Can I get a program/app free where it is easy to make database like in MSA just now in MySQL !??? Where and the name of the program !???
How can I run MySQL om my ISS SERVER WIN XP PRO !?? or is the MySQL just running fine whitout any updates !???
I have ISS 5,1 or 5,2 do I have to update to 6,0 and where can I find that for free !??
|
 |
the boss
Senior Member
Joined: 19 January 2003
Location: Saudi Arabia
Status: Offline
Points: 1727
|
Post Options
Thanks(0)
Quote Reply
Posted: 02 July 2003 at 10:20pm |
www.mysql.com
yes My SQL is better when compared to Access but MS SQL stands the best in SQL databases for web based use.. My SQL offers pretty much more than access and is more efficient..
|
 |
serendipity
Groupie
Joined: 10 June 2003
Status: Offline
Points: 43
|
Post Options
Thanks(0)
Quote Reply
Posted: 10 July 2003 at 6:01pm |
I hear that MySQL is superior to Access in terms of security and speed. I currently run access db but am thinking about migrating over to MySQL.
I am not a technical person, is migrating over to the MySQL version of Webwiz something that most beginners have a tough time with, or is it fairly intuitive? Will I need to have any special software to update the MySQL db (ie; I didn't need MS Access program to create access db...).?
Any suggestions/testimonals would be appreciated.
|
 |
wgsnow
Newbie
Joined: 12 July 2003
Status: Offline
Points: 1
|
Post Options
Thanks(0)
Quote Reply
Posted: 12 July 2003 at 8:24pm |
Mysql and Access are for different audiences, and they each have different advantages. Access is a very user friendly database and is excellent for small offices and small websites. But, an important limitation of Access is that it can only handle about 15-20 users at the same time. If you exceed this number your database can become corrupted. I have lost an entire database because of this. No fun! So if you are anticipating a lot of web traffic you should avoid Access.
Mysql, on the other hand, can handle enormous traffic. I think I heard for example that Yahoo! uses Mysql. The other advantage of Mysql is that it is free. The disadvantage is that if you are new to databases, you will be in for alot of hair pulling.
One other thing, you will not be able to run Mysql on IIS. You need to download the Apache server (which is free), and then install Mysql over it.
Is mysql better than mssql? This is a Mac vs. PC question. Personally, I prefer mssql, but there are many advocates of mysql.
Hope this helps.
|
 |
zaboss
Senior Member
Joined: 20 August 2002
Location: Romania
Status: Offline
Points: 454
|
Post Options
Thanks(0)
Quote Reply
Posted: 13 July 2003 at 6:50am |
wgsnow wrote:
One other thing, you will not be able to run Mysql on IIS. You need to download the Apache server (which is free), and then install Mysql over it.
|
It is not true. MySQL and IIS has nothing to do. IIS is a server for web, MySQL is a server for databases. As long you have installed the right connector drive, you can connect to any type of database MySQL, Oracle etc. Off course, there is the mySQL server that you need to install, and also a tool like mySQL Front (a sort of Enterprise manager equivalent) to help you administrate it. I have build an entire application that works on access/mysql/mssql. There are several changes that you have to make in order to port an app from 1 db to another. Access and MS SQL works almost hand in hand (natural they have the same provider), but still you need to made some adjustments. On the other hand, mySQL handles different some of the things. Also, it does not support stored procedures and some of the asp automatization like rs.recordcount, rs.absolutepage a.s.o. If you know some programming, you can make the necessary adjustments, else... The wwg forum cannot be ported to mySQL. It is a well documented discussion I'm sure you will find arround here if you dig deep enough. I'm afraid that if you want to use it, you have no other choice but to by a MS SQL server db. Or switch to another forum software that works on asp with mysql. I have found one but I'm afraind I can remember where. Search on aspin.com. But for sure you would not find one better than wwg forum.
|
|
|
 |
serendipity
Groupie
Joined: 10 June 2003
Status: Offline
Points: 43
|
Post Options
Thanks(0)
Quote Reply
Posted: 13 July 2003 at 12:23pm |
I do expect to get approx 20 concurrent users at a time over the next six months or so, therefore it sounds like I should start thinking about my options now (and practice with MySQL!). However, I wanted to verify this:
zaboss wrote:
The wwg forum cannot be ported to mySQL
|
I can't import my access db to mySQL?? I've seen numerous threads on this here, but never looked at - I thought this was a common thing??
|
 |
Flamewave
Senior Member
Joined: 19 June 2002
Location: United States
Status: Offline
Points: 376
|
Post Options
Thanks(0)
Quote Reply
Posted: 14 July 2003 at 3:42pm |
It seems you are confusing MySQL and MS SQL as being the same thing. They are NOT the same database. MySQL is a free (and I belive it is also open source, not sure about this though) database that was originaly developed for Linux, and is the popular choice for PHP and Linux based web applications, although it can be used with ASP just as easily if you have the database driver installed on the webserver. MS SQL is a enterprise database that is not free (it is actually quite expensive) written by Microsoft and is one of the more popular databases used in ASP web applications (along with MS Access). This is why MS Access and MS SQL are so easy to switch between. MS SQL is made for Windows based servers whereas MySQL will run on either Windows or Linux.
I can't import my access db to mySQL?? I've seen numerous threads on this here, but never looked at - I thought this was a common thing??
|
I imagine you can import your access db to MySQL, but like was said earlier, Access and MySQL syntax and built in procedures/functions are quite different and you will have to edit your code to allow it to work with MySQL.
Hope this clears things up.
Edited by Flamewave
|
|
- Flamewave
They say the grass is greener on the other side, but if you really think about it, the grass is greener on both sides.
|
 |
serendipity
Groupie
Joined: 10 June 2003
Status: Offline
Points: 43
|
Post Options
Thanks(0)
Quote Reply
Posted: 14 July 2003 at 4:44pm |
Yes, thank you!
|
 |