Web Wiz - Green Windows Web Hosting

  New Posts New Posts RSS Feed - What do I need
  FAQ FAQ  Forum Search   Events   Register Register  Login Login

What do I need

 Post Reply Post Reply Page  <12
Author
Bluefrog View Drop Down
Senior Member
Senior Member


Joined: 23 October 2002
Location: Korea, South
Status: Offline
Points: 1701
Post Options Post Options   Thanks (0) Thanks(0)   Quote Bluefrog Quote  Post ReplyReply Direct Link To This Post Posted: 21 August 2005 at 6:00pm
MySQL is a bit terse compared to MS SQL - I like T-SQL better than MySQL's brand of SQL. (T-SQL is the brand of SQL used by MS SQL.)

T-SQL is also closer to ANSI SQL which is nice.

PHP is also a bit terse and suffers from several serious problems. There are multiple commands that do the exact same thing in it. In ASP, there's just 1 command to do something. That's a part of the price you pay for open source stuff vs. commercial software.

But you're in the wrong place for PHP stuff too. Most people here use MS technologies over open source stuff. Of course a lot of us also use open source stuff as well, but most people's preferences here are for MS.

PHP is relatively easy though. And so is MySQL. If you use MySQL, go out and get MySQL Front - excellent front end for it. The one that comes with MySQL is very weak. I own a copy of that myself because it is the only way that I want to work with MySQL.

A major concern with choosing which technology to use for a lot of people is cost - but that aslo includes your time to develop and maintain the application. I find that MS is cheaper because it lets me develop and maintain easier. Someone else will say the opposite, but whatever. You cannot create an application in MySQL that is more maintainable than one that you can create in MS SQL. That's just a fact.

However, you're developing a relatively small app from the sounds of it. So it won't matter too much unless you plan to expand it later.

For PHP vs. ASP, they are about the same for maintainability and dev speed. I'd rather use ASP than PHP because I know it better, but also because then I'd be using a Windows server and later if I wanted to rewrite the app or make it larger, I'd have the option to do it in Visual Studio with ASP.NET.

I'm nitpicking a bit, but ultimately it doesn't matter which you use for a small application. Whichever you feel most comfortable with will be the best choice for you.

Cheers,

Ryan


Back to Top
ub3rl337ch3ch View Drop Down
Senior Member
Senior Member
Avatar

Joined: 16 February 2005
Location: Australia
Status: Offline
Points: 341
Post Options Post Options   Thanks (0) Thanks(0)   Quote ub3rl337ch3ch Quote  Post ReplyReply Direct Link To This Post Posted: 21 August 2005 at 7:13pm
Are you trying to confuse the poor guy ryan? LOL
Back to Top
dpyers View Drop Down
Senior Member
Senior Member


Joined: 12 May 2003
Status: Offline
Points: 3937
Post Options Post Options   Thanks (0) Thanks(0)   Quote dpyers Quote  Post ReplyReply Direct Link To This Post Posted: 21 August 2005 at 8:06pm
I'm surprised that your web host offers access on a linux server. I'd check that if I were you.

Most linux web hosts offer LAMP technology (Linux, Apache, MySQL, PHP).

MySQL and MSSQL typically run on their own db servers that are separate from your hosting web server. Access runs under Windows and usually it's the same server as your web server.

MSSQL and Access run only under Window.
MySQL can run under either Windows or Unix

From Linux, you can access a MSSQL server but it usually requires some intervention from your web host to do it. I don't think you can get to an Access DB from linux.


If you're trying to develop on your windows PC and then migrate to a Linux web server, your best bet is to install PHP, Apache, and Mysql on your PC and use those for developing.

If you want to develop on your PC and migrate to a Windows web server, you'll need to install IIS (XP Pro only) which comes with ASP and Access drivers (if you don't already have them).
You can install the .NET framework on top of it if you want to develop in asp.net.
MSDE is the free (limited connection) version of MSSQL that you can use for development.

Lead me not into temptation... I know the short cut, follow me.
Back to Top
rogerew View Drop Down
Newbie
Newbie


Joined: 20 August 2005
Status: Offline
Points: 6
Post Options Post Options   Thanks (0) Thanks(0)   Quote rogerew Quote  Post ReplyReply Direct Link To This Post Posted: 21 August 2005 at 8:20pm
Hi Guys, yes I confused!Cry
My hosting package is here: http://www.easyspace.com/services/hosting.html it's the Platinum package and this is what I'm going on regarding what is available to me. They do offer windows hosting with this package and I could always change if it would be adviseable.
Unless it's absolutely necessary, I don't really want to have to learn anything new at the moment. I suppose I can use asp.net as Dreamweaver will take care of that for me - will I need anything on my host's server to use this?
However, I would prefer to stick with Access for the time being, as the datetime thing Ryan mentioned won't affect me and it will be one thing less to learn.
I appreciate that it won't be technically the latest thing, but if I can get away with using Access on my host which says it has Access availabilty and DW to write the code, be it asp or asp.net or php or whatever, then that is what I would prefer to do at the moment.
Thanks for the input guys, keep it coming, the fog will clear eventually, I hope.Wink
Back to Top
ub3rl337ch3ch View Drop Down
Senior Member
Senior Member
Avatar

Joined: 16 February 2005
Location: Australia
Status: Offline
Points: 341
Post Options Post Options   Thanks (0) Thanks(0)   Quote ub3rl337ch3ch Quote  Post ReplyReply Direct Link To This Post Posted: 21 August 2005 at 9:57pm
with that deal you can choose what type of server/db you want to use. given what programs you have already, and that its a fairly low-end project i'd reccomend going with hosting on a windows box, and using access as ur db. It means you don't have to bother with downloading other db front ends etc.
 
All you would need to do is make sure IIS is installed on your local machine (and the .net framework if you want to use asp.net), do all your testing locally, then pump the asp and the db up to your web server. Really the only thing you've have to change when going live (maybe) is a tweak on the connection string to make sure the asp is still looking in the right spot for the db. Usually it's easier to put the db in the same spot relative to the asp, but sometimes webhosts have somewhere else they keep all db's together. If this is the case, just ask them for the location; most hosts are pretty good with helping you figure out connection strings...
 
edit: i am also fully aware that i may just be adding to your confusion, for which i apologise...


Edited by ub3rl337ch3ch - 21 August 2005 at 9:58pm
Back to Top
rogerew View Drop Down
Newbie
Newbie


Joined: 20 August 2005
Status: Offline
Points: 6
Post Options Post Options   Thanks (0) Thanks(0)   Quote rogerew Quote  Post ReplyReply Direct Link To This Post Posted: 22 August 2005 at 5:09am
OK, this is what I'm gonna do: Use Access on Wndows server and asp.net. However, Dreamweaver gives me a choice of asp.net C# or asp.net VB. Which should I use and why or won't it matter?
Back to Top
dpyers View Drop Down
Senior Member
Senior Member


Joined: 12 May 2003
Status: Offline
Points: 3937
Post Options Post Options   Thanks (0) Thanks(0)   Quote dpyers Quote  Post ReplyReply Direct Link To This Post Posted: 22 August 2005 at 7:21am
From a technical standpoint, it doesn't matter.
People with a C, C++, or Java programming background will probably pick up C# quicker than VB as the C# syntax is closer to those languages than the VB syntax. - It's also just different enough to be a PITA - lol.

If you have an asp or vb background, vb.net will make more sense to you.

If you have no real programming background, and it doesn't make a difference to you, I'd go with C#. Mostly because more of the apps and utility type things you might want to incorporate/mod later on are written in C#.

Lead me not into temptation... I know the short cut, follow me.
Back to Top
Mart View Drop Down
Senior Member
Senior Member
Avatar

Joined: 30 November 2002
Status: Offline
Points: 2304
Post Options Post Options   Thanks (0) Thanks(0)   Quote Mart Quote  Post ReplyReply Direct Link To This Post Posted: 22 August 2005 at 7:58am
Which ever .net language you choose though it always helps to have at least a basic understanding of the others. Personally I prefer C# beacuse I have to do less typing. It's also much more strict than vb which can help at times.
Back to Top
 Post Reply Post Reply Page  <12

Forum Jump Forum Permissions View Drop Down

Forum Software by Web Wiz Forums® version 12.08
Copyright ©2001-2026 Web Wiz Ltd.


Become a Fan on Facebook Follow us on X Connect with us on LinkedIn Web Wiz Blogs
About Web Wiz | Contact Web Wiz | Terms & Conditions | Cookies | Privacy Notice

Web Wiz is the trading name of Web Wiz Ltd. Company registration No. 05977755. Registered in England and Wales.
Registered office: Web Wiz Ltd, Unit 18, The Glenmore Centre, Fancy Road, Poole, Dorset, BH12 4FB, UK.

Prices exclude VAT at 20% unless otherwise stated. VAT No. GB988999105 - $, € prices shown as a guideline only.

Copyright ©2001-2026 Web Wiz Ltd. All rights reserved.