Page 1 of 2 12 LastLast
Results 1 to 10 of 12

Thread: ASP/MYSQL Forum

  1. #1
    Join Date
    Oct 2005
    Posts
    14
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default ASP/MYSQL Forum

    Anyone know of a ASP scripted forum that can run on MYSQL Database backend? I'm currently trying to reconfigure the ASP-DEV forum to run on MYSQL, but progress is not good

    Cheers

  2. #2
    Join Date
    Sep 2005
    Posts
    190
    Thanks
    1
    Thanked 0 Times in 0 Posts

    Default

    Guess I could search on Google to see if I can help... but do you have a reason for wanting asp?

  3. #3
    Join Date
    Sep 2005
    Posts
    190
    Thanks
    1
    Thanked 0 Times in 0 Posts

    Default

    (one thing with php btw is it can talk to MySQL naitelvy - I'm not clever enough to know what that means performance wise in practice but you don't have to go through ODBC that way)

  4. #4
    Join Date
    Feb 2004
    Posts
    4,876
    Thanks
    2
    Thanked 134 Times in 113 Posts

    Default

    Quote Originally Posted by Jon Freeman
    (one thing with php btw is it can talk to MySQL naitelvy - I'm not clever enough to know what that means performance wise in practice but you don't have to go through ODBC that way)
    So can ASP - when the right connection string is used.
    Warren Ashcroft
    Red Fox UK Limited - Pioneers in Internet Technology
    http://www.redfoxuk.com
    w.ashcroft [at] redfoxuk.com

    NOTE: Forum Private Messaging should not be used to contact staff with support queries.

  5. #5
    Join Date
    Oct 2005
    Posts
    14
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    The reason i wanted asp is because I know alot more about ASP than I do about PHP. Therefore it would be easier for me to tweak it to match in with my site.

    I fell upon Snitz last night and installed it. I'm going to give a go and see what happens. It is ASP and supports MSSQL, Access and MYSQL so covers my criteria.

    If you guys have previously had any problems with Snitz or know a better solution, your comments are very welcome.

    Cheers

  6. #6
    Join Date
    Sep 2005
    Posts
    190
    Thanks
    1
    Thanked 0 Times in 0 Posts

    Default

    Quote Originally Posted by devworld
    The reason i wanted asp is because I know alot more about ASP than I do about PHP. Therefore it would be easier for me to tweak it to match in with my site.
    Hmmm. know that feeling but I think overall I am more comfortable with something I would say is C like - used ASP (VB) becuse it was free and on my Win 2K pro box - later moves towards me now mostly moving onto php came in part from a desire to learn Linux as a home user and the Lamp (Linux/Apache/MySql/php) is quite popular.

    I did a conversion once on VB-Acesss to VB MySQL but that is the site now on php and it was some time ago - trying to remember where the problems are - Date on SQL is one I think I hit with MySQL wanting the ISO (?) yyyyy-mm-dd format (a better format to be honest).

  7. #7
    Join Date
    May 2005
    Location
    Location: Location
    Posts
    181
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Quote Originally Posted by devworld
    I fell upon Snitz last night and installed it. I'm going to give a go and see what happens. It is ASP and supports MSSQL, Access and MYSQL so covers my criteria.

    If you guys have previously had any problems with Snitz or know a better solution, your comments are very welcome.

    Cheers
    I've been running Snitz for a few years without problems although not with MySQL. Have used it with Access and MSSSQL no probs. It's nothing fancy but does the trick!
    Glynn.

  8. #8
    Join Date
    Sep 2005
    Posts
    190
    Thanks
    1
    Thanked 0 Times in 0 Posts

    Default

    Another difference MYSQL vs Access wise you might enounter is a rows-affected vs rows-returned thing. MySQL distinguishes between the results of an Update, insert, delete which changes data and a Select which only asks. MySQL provides a way round this. eg if you were using myODBC there is a compatibility setting.

    Another one probably only Linux (can't try access there on my set up) and maybe OS, not DB when changing things (casued me much grief recently) is case sensitivty when dealing with a table name. SELECT * from song works but SELECT * from Song fails on my set up.

  9. #9
    Join Date
    Mar 2005
    Location
    Isle of Man
    Posts
    1,261
    Thanks
    3
    Thanked 23 Times in 23 Posts

    Default

    Quote Originally Posted by Jon Freeman
    Another one probably only Linux (can't try access there on my set up) and maybe OS, not DB when changing things (casued me much grief recently) is case sensitivty when dealing with a table name. SELECT * from song works but SELECT * from Song fails on my set up.
    The case sensitivity is determined by the underlying OS MySQL is running on, therefore most Unix based systems are case sensitive with their table names, but MySQL on Windows is case-insensitive. I say 'most' Unix based systems, because Mac OS X provides an exception, as it uses a case-insensitive file system meaning case-insensitive table names too.

    ----
    EDIT
    Therefore I would add that common sense says always use the same case for things throughout. I just stick with lowercase everything, as it is a safe and easy to remember way to do it. One thing I don't think you can do, even in a case-insensitive environment, is mix the case versions within the same SQL statement.

  10. #10
    Join Date
    Sep 2005
    Posts
    190
    Thanks
    1
    Thanked 0 Times in 0 Posts

    Default

    Thanks nick. Did adopt the policy you suggested BTW. Also did that with forms and "GET" on the php side where I had not (my failure) been consistant with asp.

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. asp.net connection to mysql
    By keyur_ptl in forum ASP.NET
    Replies: 1
    Last Post: 27th January 2006, 12:26 PM
  2. ASP.NET 2 connection to MySQL - me too
    By madwab in forum ASP.NET
    Replies: 37
    Last Post: 10th January 2006, 07:13 AM
  3. asp with mysql
    By sharpinfosys in forum ASP (VBScript)
    Replies: 3
    Last Post: 12th December 2005, 12:40 PM
  4. asp mysql commands
    By slippers in forum Technical Support
    Replies: 4
    Last Post: 28th November 2005, 09:39 PM

Bookmarks

Posting Permissions

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