Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by pgirl

  1. pgirl

    Problem with accessing

    If you want to store picture/multimedia files from VB into Oracle you will need to use blobs (binary large objects). It's not terrifically simple ;-) Basically you define a table like create table content (content_id number(6) primary key, content_desc varchar(250), content_image blob); Then...
  2. pgirl

    About Web.Show_Document() method

    It sounds as though the form is not picking up the word '_Blank' as a keyword, and is instead naming the new window. Then when you recall the method, it's inserting into the named window. In this way, you could say target="one" and it will open a new window, but then always insert...
  3. pgirl

    How best to implement connection pooling?

    Hi there, There's a very good article with some comparative testing located here: http://www.15seconds.com/issue/010814.htm Good luck
  4. pgirl

    Blobs and clobs in design

    Hi ddrillich, I have since submitted the design of the table exactly as you have yours. Since they both depend on the primary key, it doesn't violate the first rule of normalisation, but I was wrestling with concept of a column called "content" which could contain either a blob for a...
  5. pgirl

    Blobs and clobs in design

    Hi, I'm trying to design a content management database (logical design only), but I'm stuck. The database must store multimedia, and the documents must be searchable, so I have a content table. Since some of the data will be blob, and some clob - I obviously can't store it all in the same...

Part and Inventory Search

Back
Top