473,398 Members | 2,380 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,398 software developers and data experts.

web database...

Can anyone tell me where I can get instructions to design an Access
database to work directly with a website? The website will hopefully
contain a member base and that is what i would use access for. The
databases purpose is to collect all the information that i would
require for new members to enter upon registration... The database
would also need to be connected to to verify users logging in of
correct usernames and passwords....has anyone done this? know anything
about it? know where i could possiblyget answers or a different
solution?
Nov 12 '05 #1
5 1624
Jon
Can anyone tell me where I can get instructions to design an Access
database to work directly with a website?


microsoft.public.inetserver.asp.db
Nov 12 '05 #2
http://asp101.com/
http://www.bullschmidt.com/DevTip.asp
http://msdn.microsoft.com/library/de...ifunctions.asp
http://www.coveryourasp.com/
http://pc13.virtualave.net/dbtutorial.htm
http://www.webf1.com/ScriptDoc/
"Inquest750" <in********@excite.com> wrote in message
news:4d**************************@posting.google.c om...
Can anyone tell me where I can get instructions to design an Access
database to work directly with a website? The website will hopefully
contain a member base and that is what i would use access for. The
databases purpose is to collect all the information that i would
require for new members to enter upon registration... The database
would also need to be connected to to verify users logging in of
correct usernames and passwords....has anyone done this? know anything
about it? know where i could possiblyget answers or a different
solution?



----== Posted via Newsfeed.Com - Unlimited-Uncensored-Secure Usenet News==----
http://www.newsfeed.com The #1 Newsgroup Service in the World! >100,000 Newsgroups
---= 19 East/West-Coast Specialized Servers - Total Privacy via Encryption =---
Nov 12 '05 #3
At this stage of development, start with MySQL and PHP. It is free and
supported by an extremely wide variety of web control panels.

Pavel

Inquest750 wrote:

Can anyone tell me where I can get instructions to design an Access
database to work directly with a website? The website will hopefully
contain a member base and that is what i would use access for. The
databases purpose is to collect all the information that i would
require for new members to enter upon registration... The database
would also need to be connected to to verify users logging in of
correct usernames and passwords....has anyone done this? know anything
about it? know where i could possiblyget answers or a different
solution?

Nov 12 '05 #4
If you know how to develop using Access using some VBScript (and don't need
to update the database by opening it directly while it is expected to serve
data) then you will be ok if you go out and get a book on ADO and ASP -- or
if your brave you can dive into ASP.NET using the Microsoft Visual Studio
suite.

If you want serious developer tools and gigs of documentation then you could
look into using the free MSDE data engine as your database and use access to
connect to it using the Access Project. MSDE is also on the later Office
CD's and sounds like it would work just fine for your application. If this
is going to get big and crazy, you can detatch and reattatch the data files
to the full blown SQL Server product - it's easy to do, on purpose. If you
want to know why I prefer not to use mdb's for the web, read on - this is
something I know a lot about... If you need help or a place to serve your
site with these technologies, I can do that. If you already have a place -
cool, just do a lot of reading and testing...

<Php and Linux is cool - but watch out for the proprietary lawsuit letters
from SCO/Unix that Linus sent out. :) I understand some things about
Linux - trust me, but hey - America is free enterprise baby, and Microsoft -
well they just do it better than others. So, all you Linux people - don't
have a cow over this! You may have your turn sometime and you can't live on
donated pizza forever (cholesterol will get you) so give it up.>

Previously posted at Microsoft.public.dotnet.framework.aspnet...

I have built many ASP websites using mdb backends and have had downtime. I
haven't even tried it with ASP.NET because I learned EARLY. If you open the
database and try to modify it, users will "sometimes" get a "Page cannot be
displayed" error because you have the database locked. In early versions of
IIS, closing the database would still not release the locks for some reason.
The only way I could get it back online was to stop IIS and copy, then
rename the mdb, then restart IIS - unbelievable... so... I resorted to
copying the thing elsewhere, modify it as fast, then replace the production
mdb. Hopefully, you are not collecting data while this is going on or else
it would obviously be lost. Sure, you could import some of the changes, but
geez...

On both mdb releases I had instances where ISP administrators did a blanket
permission assignment and gave all web files "read only" thinking that they
were "just html files". That certainly doesn't set well with a mdb.

Using Sql Server (or MSDE) is wonderful, I have dozens of sites running with
it and
wouldn't think twice about changing anything. Once you set up the
permissions and connection string, it's very unlikely you will ever have to
look at that again unless the entire server changes somehow.

But really, too many Access things like this to list... small database or
large, this is Access and you pay with frustration for keeping things simple
with one little mdb.

--
Jerry Boone
Analytical Technologies, Inc.
http://www.antech.biz
Secure Hosting and Development Solutions for ASP, ASP.NET, SQL Server, and
Access

"Inquest750" <in********@excite.com> wrote in message
news:4d**************************@posting.google.c om...
Can anyone tell me where I can get instructions to design an Access
database to work directly with a website? The website will hopefully
contain a member base and that is what i would use access for. The
databases purpose is to collect all the information that i would
require for new members to enter upon registration... The database
would also need to be connected to to verify users logging in of
correct usernames and passwords....has anyone done this? know anything
about it? know where i could possiblyget answers or a different
solution?

Nov 12 '05 #5
Pavel Romashkin wrote:
At this stage of development, start with MySQL and PHP. It is free and
supported by an extremely wide variety of web control panels.


Of course, you can also use Access as a client to the database via the
MyODBC driver on the mysql.com website. I've had to do that to allow for
the use of Access reports and queries on the live remote data with
linked tables.

--
Justin Koivisto - sp**@koivi.com
PHP POSTERS: Please use comp.lang.php for PHP related questions,
alt.php* groups are not recommended.

Nov 12 '05 #6

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

Similar topics

0
by: Cherrish Vaidiyan | last post by:
sir, The following are the steps that i followed in setting up standby database on Red hat Linux 9. i am using Oracle 9i. i have followed the steps in this site : ...
6
by: Marvin Libson | last post by:
Hi All: I am running DB2 UDB V7.2 with FP11. Platform is Windows 2000. I have created a java UDF and trigger. When I update my database I get the following error: SQL1224N A database...
8
by: Kamlesh | last post by:
Hi, How do I know the physical database path of a database. When I goto the DB2INSTANCE users's directory (/home/db2inst1), I see following folders: /db2inst1/NODE0000/SQL00001...
1
by: pintur | last post by:
The message is: SQL1036C Errore di I/O durante l' accesso al database. SQLSTATE=58030 what is the proble? what for restore tables? thanks
3
by: josh.kuo | last post by:
Sorry about the subject, I can't think of a better one. I recently wrote some PHP classes that I think might be of interest to this group. Since I have been reaping the benefits of reading news...
8
by: morleyc | last post by:
Hi, until recently i was quite happy to add data sources from mssql database in visual studio and drag the datasets directly onto the form this creating a directly editable form which worked well....
0
by: Jack | last post by:
Training Classes for Oracle10g, 9i, 8i Certification training in Oracle10g and 9i: DBA, Developer, Discoverer. training conducted at your location worldwide. Courseware licensing also available....
0
by: Winder | last post by:
Training Classes for Oracle10g, 9i, 8i Certification training in Oracle10g and 9i: DBA, Developer, Discoverer. training conducted at your location worldwide. Courseware licensing also available....
0
by: Laurynn | last post by:
# (ebook - pdf) - programming - mysql - php database applicati # (Ebook - Pdf)Learnkey How To Design A Database - Sql And Crystal Report # (ebook-pdf) E F Codd - Extending the Database Relational...
9
by: Peter Duniho | last post by:
Is there a straightfoward API in .NET that allows for inspection of a database? That is, to look at the structure of the database, without knowing anything in advance about it? For example,...
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: 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
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
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
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
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
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

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.