|
|
 |
| Classic ASP Databases Discuss using ASP 3 to work with data in databases, including ASP Database Setup issues from the old P2P forum on this specific subtopic. See also the book forum Beginning ASP.NET Databases for questions specific to that book. NOT for ASP.NET 1.0, 1.1, or 2.0. |
Welcome to the p2p.wrox.com Forums.
You are currently viewing the Classic ASP Databases section of the Wrox p2p Programmer to Programmer discussion community. This is a community of more than 40,000 computer programmers including Wrox book authors and readers. As a guest, you can read any forum posting. By joining our free Wrox p2p community you can post your own programming questions and respond to other programmers’ questions. Registered users also don't have to see the ads that are displayed to guests. Registration is fast, simple and absolutely free so please, join today!
Join today and post to win prizes! Post more to increase your chances of being Wrox’s top poster of the month.
|
 |

October 24th, 2004, 09:58 PM
|
|
Authorized User
|
|
Join Date: Aug 2003
Location: Nicholasville, KY, USA.
Posts: 54
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
Storing Large Amounts Of Data
I want to create a database of articles for my customers to read. The articles include photos and videos.
I am familiar with ASP, JavaScript and MS Access. I have an understanding of XML but have not worked with it.
What is the best way to store articles while still providing the security and organization that a database offers? I have found MS Access to be very limited in the amount of information a particular field can hold. Even using the Memo type, an article seems to be too large. The whole use of the database seems pretty cumbersome for storing large documents.
Judging by the various news sites (MSNBC, CNN, etc.), there must be some efficient way to do this.
Any suggestions are helpful.
Best regards,
sabertec2
|

October 25th, 2004, 07:22 AM
|
|
Friend of Wrox
|
|
Join Date: Jun 2003
Location: Bangalore, KA, India.
Posts: 2,477
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
How about using SQL server for storing data? You may think of using TEXT datatype there for storing article content.
I won't suggest you storing images in datbase, you can store the images and video files on the physical drives and use the path for that as URL in database, so that you can put up a link to that which corresponds to the article. On the maintenance part, you should ensure that you delete the files too when an article is removed.
Hope that helps.
Cheers!
_________________________
- Vijay G
Strive for Perfection
|

October 26th, 2004, 02:25 AM
|
|
Authorized User
|
|
Join Date: Aug 2003
Location: Nicholasville, KY, USA.
Posts: 54
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
Thanks Vijay G,
I know SQL is the standard for web based database work, but I've never had opportunity to work with it. How much data (bits or characters) does a single SQL text field allow? Some of my articles are actually chapters from some of my service manuals and tend to be pretty long. Needless to say, Access is really limited, but maybe SQL will work.
I agree with you on storing the videos and photos on the drive and simply pointing to them.
|

October 26th, 2004, 03:12 AM
|
|
Friend of Wrox
|
|
Join Date: Jun 2003
Location: Bangalore, KA, India.
Posts: 2,477
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
Check this link - SQL server - Text and image datatypes
You may break the chapters in to reasonable size and store into multiple records, if that is too large to fit into TEXT datatype columns.
Cheers!
_________________________
- Vijay G
Strive for Perfection
|
| Thread Tools |
Search this Thread |
|
|
|
| Display Modes |
Linear Mode
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
|
 |