Results 1 to 21 of 21

Thread: MySQL or Access

  1. #1

    Thread Starter
    PowerPoster sail3005's Avatar
    Join Date
    Oct 2000
    Location
    Chicago, IL, USA
    Posts
    2,340

    MySQL or Access

    2. Questions, can i use a mysql database from an ASP page, and which is more powerful/better. Access database, or MySQL? I have heard MySQL, but i am not sure.

    USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
    USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
    USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
    USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
    USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
    USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
    USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
    USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
    USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
    USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
    USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
    USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
    USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA

  2. #2
    Guru Clunietp's Avatar
    Join Date
    Oct 1999
    Location
    USA
    Posts
    1,844
    From what I understand, mySQL is a client/server database, as opposed to MS Access, which is a desktop database. MS Access requires no administration and no setup by a sys admin.

    Which one is "better"? It depends on your requirements

  3. #3

    Thread Starter
    PowerPoster sail3005's Avatar
    Join Date
    Oct 2000
    Location
    Chicago, IL, USA
    Posts
    2,340
    But can you use MySQL database from ASP as easily as you can with Access?

    -thanks

    USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
    USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
    USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
    USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
    USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
    USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
    USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
    USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
    USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
    USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
    USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
    USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
    USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA

  4. #4
    Hyperactive Member
    Join Date
    Jan 1999
    Location
    Rotterdam, Netherlands
    Posts
    386
    I think so, although personally I'd go for MSDE (free SQL Server) if you need something more powerfull then Access.
    MySQL doesn't even have stored procedures, and doesn't support sub-query's (SELECT Blah, (SELECT MAX(blah1) FROM table2) AS Blahblah FROM table) doesn't work in MySQL.
    Especially stored procedures can speed up your application a lot.
    Hope this helps

    Crazy D

  5. #5

    Thread Starter
    PowerPoster sail3005's Avatar
    Join Date
    Oct 2000
    Location
    Chicago, IL, USA
    Posts
    2,340
    Cool, sounds like MSDE would be a good idea. Basically what i need is a free database that works well with ASP. So, anything that meets those two requirements would be good.

    USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
    USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
    USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
    USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
    USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
    USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
    USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
    USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
    USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
    USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
    USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
    USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
    USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA

  6. #6
    Monday Morning Lunatic parksie's Avatar
    Join Date
    Mar 2000
    Location
    Mashin' on the motorway
    Posts
    8,169
    MySQL doesn't have stored procedures, but you can do sub-selects in some of the betas, I think.
    I refuse to tie my hands behind my back and hear somebody say "Bend Over, Boy, Because You Have It Coming To You".
    -- Linus Torvalds

  7. #7
    Member
    Join Date
    Oct 2000
    Location
    Netherlands
    Posts
    54

    I use MySQL and MSAccess

    I have a local mySQL installation and I use mySQL on my providers server.

    Although there are more and more graphical interfaces for creating and maintaining mySQL databases is far more difficult then MSAccess since a command interpreter is used with mySQL instead of the graphical interface of MSAccess.

    Queries for mySQL should not use JOIN expressions, it slows it a lot down with larger results, but it's fast if you build queries without JOIN expressions

    If you upload the phpAdmin pages to your website and protect them, you can maintenance the database on the server with your browser. I use text file upload to fill databases with data, works easiest for me.

    A mySQL database on a local PC can me maintenanced in MSAccess with specific ODBC drivers, but only the data, not the structure. But you can build queries and forms etc. in MSAccess on the mySQL database.

    So it took me a while to make test environment at home and to let mySQL work on the server, but I got it now. For work at home MSAccess is best, but for server applications it's best to use mySQL.

    http://www.mysql.com has lots of downloads and info.
    A mind is like a parachute, it has to open to let it work
    www.2beesoft.com for Icon Manager with over 20.000 free icons
    VB6 Ent. SP4, ASP, W2000/W98

  8. #8

    Thread Starter
    PowerPoster sail3005's Avatar
    Join Date
    Oct 2000
    Location
    Chicago, IL, USA
    Posts
    2,340
    OK, thanks, i'll check it out!

    USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
    USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
    USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
    USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
    USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
    USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
    USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
    USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
    USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
    USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
    USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
    USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
    USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA

  9. #9
    Guru Clunietp's Avatar
    Join Date
    Oct 1999
    Location
    USA
    Posts
    1,844
    No subqueries or stored procedures? GEEZ!

    MSDE is basically a stripped down version of SQL Server. (in fact, when I upgraded from MSDE to SQL Server a while ago, all the update did was change some registry entries!)

  10. #10
    Frenzied Member seoptimizer2001's Avatar
    Join Date
    Apr 2001
    Location
    Toledo, Ohio USA GMT -5
    Posts
    1,075
    I have used both MS Access and SQL server. I used to use Access when I was in school. Then when I started my job we used SQL server, which I had to learn, but find it much more user friendly and less frustrating than Access. I would go with the free version of SQL server.

  11. #11

    Thread Starter
    PowerPoster sail3005's Avatar
    Join Date
    Oct 2000
    Location
    Chicago, IL, USA
    Posts
    2,340
    Where do i get the free version? What version are you talking about?

    USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
    USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
    USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
    USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
    USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
    USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
    USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
    USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
    USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
    USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
    USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
    USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
    USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA

  12. #12

  13. #13
    Lively Member
    Join Date
    Nov 2000
    Location
    Pakistan
    Posts
    80
    You can easily use mySQL with ASP it is power full like ORACLE.
    it is an RDBMS. it provide more securities and management.


    But many web hosting services not provide services to support mySQL with ASP.
    they support mySQL with JSP with like Unix or Linux plateform

    So if you planning to use database with ASP you should use SQL server.

    but if want to install any thing abt mysql for freee
    then visit www.mysql.com
    and can get information from

    www.webmonkey.com



    Adeel Ahmed

  14. #14

    Thread Starter
    PowerPoster sail3005's Avatar
    Join Date
    Oct 2000
    Location
    Chicago, IL, USA
    Posts
    2,340
    Cool. Thanks. I host the website off my computer and it is mainly for learning purposes so as long as it will work on my computer that is ok.

    USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
    USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
    USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
    USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
    USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
    USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
    USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
    USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
    USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
    USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
    USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
    USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
    USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA

  15. #15
    Guru Clunietp's Avatar
    Join Date
    Oct 1999
    Location
    USA
    Posts
    1,844
    Originally posted by adeelahmed
    You can easily use mySQL with ASP it is power full like ORACLE.
    it is an RDBMS. it provide more securities and management.
    How is it as "powerful as oracle" if it does not support subqueries, stored procedures or db logging (to name a few features)?

  16. #16
    Lively Member
    Join Date
    Nov 2000
    Location
    Pakistan
    Posts
    80
    RE: quote:

    NASA switches from Oracle to MySQL

    more Information visit: http://www.mysql.com/news/article-51.html

    general information n Documentation about mySQL for more information as i said
    "mySQL is power full like ORACLE."
    http://www.mysql.com/documentation/mysql/bychapter/


    mySQL is also multithreaded, and you can use it as client server database system.


    I take my words back as i said
    "mySQL is RDBMS(Relational Database Management System)"

    but yes mySQL is "Database Management System"



    Adeel Ahmed

  17. #17
    Monday Morning Lunatic parksie's Avatar
    Join Date
    Mar 2000
    Location
    Mashin' on the motorway
    Posts
    8,169
    MySQL is definitely not a contender to Oracle, which kicks it completely. But since it's free I'm not complaining
    I refuse to tie my hands behind my back and hear somebody say "Bend Over, Boy, Because You Have It Coming To You".
    -- Linus Torvalds

  18. #18

    Thread Starter
    PowerPoster sail3005's Avatar
    Join Date
    Oct 2000
    Location
    Chicago, IL, USA
    Posts
    2,340
    Wow, i feel really high tech. Using the same database as NASA? Oh man.

    USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
    USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
    USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
    USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
    USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
    USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
    USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
    USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
    USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
    USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
    USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
    USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
    USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA

  19. #19
    Guru Clunietp's Avatar
    Join Date
    Oct 1999
    Location
    USA
    Posts
    1,844
    From that article:
    The switch to Open Source software was primarily driven by costs, and MySQL was found to be the most robust product available
    Well, since MySQL is free and Oracle costs a bundle, and you are limited by cost, which one would you choose?

    I suppose when they compared free databases, they found that MySQL was definitely more powerful than manually editing a text file with notepad .

    All modern RDBMSs' are multithreaded, client/server systems, and whoever wrote that MySQL help file that says MySQL is as powerful as Oracle is on crack! Also note the source of that document (mysql.com)

    For a free database, I'm definitely not going to complain, but there is alot of hype about mysql. I am not claiming to be a MySQL expert, but from what I understand about its limitations I can't see how this can be considered a contender to the big boys (Oracle, M$, IBM, Sybase) when you need anything more than table storage and some simple queries.

  20. #20
    Lively Member
    Join Date
    Nov 2000
    Location
    Pakistan
    Posts
    80
    Is the Cost every thing that NASA has taken step to switch all of its information From ORACLE to mySQL?

    but I will second whatever the Clunietp explained abt ORACLE.



    Adeel Ahmed

  21. #21
    Monday Morning Lunatic parksie's Avatar
    Join Date
    Mar 2000
    Location
    Mashin' on the motorway
    Posts
    8,169
    I'm just going to tidy up here

    MySQL -- free
    ORACLE -- costs more than you can fit in a Long

    So this is why I use it
    And also, the point of this thread was choosing MySQL over Access...
    I refuse to tie my hands behind my back and hear somebody say "Bend Over, Boy, Because You Have It Coming To You".
    -- Linus Torvalds

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width