How can I upload/display image within a record ?

Hi,
I like to integrate an image into a record. Say, we have a table with columns: name, address, telefon, image
How do I upload the image into that very "image" field and display it in a report ?
<br>TIA
<br>Bernhard

Greetings,
I have a question. Following the howto on the upload/download app, and then being able to successfully upload the image into the DB, is it possible to reference this image from with the Portal tablespace. IE, can I do an <img src="whatever here"> call and be able to pull that image into a portal page. Can I reference it outside HTMLDB?
-- Thanks in Advance
-- Cliff Moon
-- UTPA Webmaster

Similar Messages

  • How can you upload an image to MYSQL using php?

    Ok this is a joint thread with one of my other ones because no one else  was posting on it, so I did not get what I needed, so, How can you  upload an image to mysql so when some one logs on to my site, they see  or can upload there own avatar, now there are loads of problems with  this, 1) many people don't know how, 2) It's not every day you try to  encode a image into mysql, 3) Letting people upload images into mysql  can cause traffic problem with people trying to log in. So that's it.

    Uploading images into MySQL is a bad idea, for more reasons than you mention. You should store the images in a directory on the server instead. But if you want to learn the hard way, here is the method:
    The mysql data type must be blob.
    The form enctype must be multipart, like this: enctype="multipart/form-data"
    The form input field myst be type file, like this: <input type="file" name="upload"/>
    Here is example code that prepares the variable $photodata to be inserted into the database.
      $uploadfile = $_FILES['upload']['tmp_name'];
      $photoname = $_FILES['upload']['name'];
      $uploadtype = $_FILES['upload']['type'];
      if ($uploadfile != "") {
    $tempfile = fopen($uploadfile, 'rb');
    $filesize=filesize($uploadfile);
    $width=getimagesize($uploadfile);
    $widthx=$width[0];
    $heightx=$width[1];
    if (($widthx > 102) or (heightx > 135)){
    $image_too_big = " but the image size was too large and was not submitted.";
    } else {
    $photodata = fread($tempfile, filesize($uploadfile));
    $photodata = addslashes($photodata);

  • How can i upload a image file to server by using jsp or servlet.

    Hi,
    I m gurumoorthy. how can i upload a image file to server by using jsp or servlet without using third party API. pls anyone send me atleast outline of the source code.
    Pls send me anyone.
    Regards,
    Gurumoorthy.

    I'm not an applet programmer so I can't give you much advice there.
    If you want to stream the file from the server before it's entirely uploaded, then I don't believe you can treat it like a normal file. If you're just wanting to throw it up there and then listen to it, then you can treat it like a normal file.
    But again, I'm not entirely certain. You might be able to stream the start of the file from the server while you're still uploading the end of it, but it probably depends on what method you're using to do the transfer.

  • How can I upload an image to this forum

    How can I upload an image to illustrate a problem? I have a tiff image of 41K, and I click on the camera icon to try to upload it, but an error message says
    "[The content type of this image is not allowed.]". What do I have to do?
    Thanks

    You need to use a jpeg image or a PNG image. Use GraphicConverter 7.3 to change the format.

  • How can i embed an image within a table

    how can i embed an image within a single column of a table

    noticed this question elsewhere and have seen that the trick is to copy and paste not drag & drop
    incase anybody else was wondering

  • How can I upload a (image) file through an applet ?

    How can I upload a (image) file through an applet ?

    have a look at http://www.haller-systemservice.net/jupload/
    i'm using Apache Jakarta HTTPClient to create a new HTTP connection to the webserver and sending a new POST request, which holds the image file. (So it's RFC1867 conform)
    there is also an open source implementation of such an applet on sourceforge. it's also called JUpload, but i think it's not maintained any more.

  • How can I upload an image using JSP in database(MySQL)

    I have to develop an application in which users can register themselve by filling up thier information(name, address) etc along with their photo.
    Storing nam etc. is simple but i am unable to upload photo using JSP.

    Here are lot of examples: http://www.google.com/search?q=jsp+file+upload
    Or if you actually have implemented something which doesn't work as expected, then please ask specific questions.

  • To display the Attendee name in LSO_PV15, how can a upload data in system

    Hi Gurus,
    I have a requirement, that is... in the LSO_PV15... generally data will be displayed of the learning solutions attendee data. but my client requirement is... he will give the text file with employee name, emplyee number, pass... the data to be uploaded and it will be displayed in LSO_PV15... how can I upload the data... and which tables will be updated while uploading the data... is there any BAPI or function module to upload the data... kindly help me... actually LSO_PV15 is a report program... but the data to be loaded in to the system and it will be displayed in the LSO_PV15... your suggestion is great help to me... thanks in advance...

    hi,
    is there any generic fix for this. if we want to display then we need to change the each page CO . is it a possible solution. or any generic solution. Please provide
    Thanks
    Smarak

  • How can I Upload Pictures, from my Mac Book Pro Retina Display with Mountain Lion OS? Tried but it gets as far asi  pictures but does not open?

    How can I Upload Pictures, from my Mac Book Pro Retina Display with Mountain Lion OS? Tried but it gets as far as i pictures but does not open?

    This is not necessarily 100% correct at the current time.
    As Dropbox is encouraging people to set it up for automatic uploading of photos they gradually increment your space as you load more pictures for free at the current time.
    You do start with a fixed 2 GB but if you upload photos you will be awarded more free space.
    You can also open a free account with Flickr - you may have some upload limits per day but you can upload pictures there.

  • How can I Upload Pictures from my Mac Book Pro Retina Display with Mountain Lion OS

    How can I Upload Pictures, from my Mac Book Pro Retina Display with Mountain Lion OS? Tried but it gets as far asi  pictures but does not open?

    Upload? what does that mean?
    You want ML forum? iLife? even notebook forum and directions to those?
    iCloud?

  • Help!How can i draw an image that do not need to be displayed?

    I want to draw an image and save it as an jpeg file.
    first I have to draw all the elements in an image object.I write a class inherit from Class Component,I want to use the method CreateImage,but I get null everytime.And i cannot use the method getGraphics of this object.Thus i can not draw the image.
    when i use an applet,it runs ok.I use panel and frame,and it fails.
    How can i draw an image without using applet,because my programme will be used on the server.
    Thank you.

    you could try this to create the hidden image
    try
              GraphicsEnvironment ge = GraphicsEnvironment.getLocalGraphicsEnvironment();
              GraphicsDevice gs = ge.getDefaultScreenDevice();
              GraphicsConfiguration gc = gs.getDefaultConfiguration();
              offImage = gc.createCompatibleImage(100, 100);
              offG = offImage.getGraphics();
          catch(Exception e)
              System.out.println(e.getMessage());
          }

  • How can I upload .pdf file from Mac to iPhone or is there an app for that?

    How can I upload a .pdf file from my mac to iPhone 3G?
    Or is there an app that will allow me to that?
    Thanks in advance
    Zia

    The app called "Air Sharing" allows you to do that. Connect to a wifi network, run the program and you can mount your iphone as a drive using Finder. Upload all the PDFs you like, and you can open them from within the Air Sharing app. Also, you can view most image files, most office files, etc.

  • Re: How can I post an image?

    Merging the hints, how does this look?
    Showing an image in Apple Discussions requires two things.
    1. The image has to exist and be accessible from a working server somewhere.
    2. Then the image can be referenced in html and will appear in your post.
    1. To achieve the first you need to register on one of the many free web photo hosting sites. An example of one would be Flicker. (If you have your own web site you can of course host your picture there.)
    Having taken a snapshot of the thing in question (the image), perhaps by using the Grab application on your Mac, you upload the image to your photo hosting site.
    You'll then need to get its URL from the site. It might be easy to see or you might have to read the site's FAQ for those details, as there are differences between sites.
    Easier still, if you are using Safari or Firefox right clicking (or Control click with a one button mouse) on the uploaded image will copy the link for you.
    It will have a form like this:
    http://farm3.static.flickr.com/2186/24541163585b68ff68b8s.jpg
    When you find it, open a new tab in your browser and paste it into it, to check that it displays and is therefore the correct URL for the image.
    2. To add this image to your post here on Apple Discussions, place an exclamation point before and after the link, illustrated as,
    !http://farm3.static.flickr.com/2186/24541163585b68ff68b8s.jpg&#033;
    which produces the image in the post.
    !http://farm3.static.flickr.com/2186/24541163585b68ff68b8s.jpg!
    An alternate html format is;
    <img src="http://source.address.of.image.jpg"/>

    How can I post an image? (Revision 2. Thanks to rrcharles)
    Showing an image in Apple Discussions requires two things.
    1. The image has to exist and be accessible from a working server somewhere.
    2. Then the image can be referenced in html and will appear in your post.
    1. To achieve the first you need to register on one of the many free web photo hosting sites. An example of one would be Flicker.
    Having taken a snapshot of the thing in question (the image), perhaps by using the Grab application on your Mac, you upload the image to your photo hosting site.
    You'll then need to get its URL from the site. It might be easy to see or you might have to read the site's FAQ for those details, as there are differences between sites.
    Easier still, if you are using Safari or Firefox right clicking (or Control click with a one button mouse) on the uploaded image will copy the link for you.
    It will have a form like this:
    http://farm3.static.flickr.com/2186/24541163585b68ff68b8s.jpg
    When you find it, open a new tab in your browser and paste it into it, to check that it displays and is therefore the correct URL for the image.
    2. To add this image to your post here on Apple Discussions, place an exclamation point before and after the link, illustrated as,
    !http://farm3.static.flickr.com/2186/24541163585b68ff68b8s.jpg&#033;
    which produces the image in the post.
    !http://farm3.static.flickr.com/2186/24541163585b68ff68b8s.jpg!

  • How can i upload pictures in these forms to make my descriptions more easy?

    how can i upload pictures in these forms to make my descriptions more easy?
    thanks!

    Hi Ace -
    Images can't be uploaded to this forum, but they can be displayed inside your post (inline) by making them accessible on a website. In that case put the url between two exclamation ('!') points, e.g. \!www.apple.com\!. You'll find more formatting info at [http://discussions.apple.com/thread.jspa?threadID=121950].
    You can see how your post will appear by clicking the Preview tab above the "Post Message: Reply" editor panel. Another trick that might come in handy: If you want to see how someone else formatted their post, just click Reply, then click the double-quote (") icon just below the Preview tab.
    Hope that helps!
    \- Ray
    !http://imgs.xkcd.com/comics/substitute.png!
    !http://4.bp.blogspot.com/_337VLNYe7kY/StxyRZtIBII/AAAAAAAAJxI/4oP1f4qbz14/s400/l auradern.jpg!

  • How can I upload pictures received with iChat to my Mac

    how can I upload pictures received with iChat to my Mac

    Hi,
    I am not sure what you mean.
    As Files they are sent in Chats (pic-in-chats) and displayed in-Line.
    Or they are sent as Separate Files, invoking the File Transfer Invite Window and you can "Accept' (Download) to the iChat Downloads folder.
    If an Active chat has a Pic in it, the pic can be dragged to the Desktop.
    Older Chats, if Saved, can also have Pics "grabbed" from them when opened.
    To be using an iChat version you need to be using OS X 10.7.x (Lion) or Earlier.
    Mountain Lion has Messages. This adds the iOS style iMessages account to what iChat can do.
    Pics can be "Saved" to the Desktop the same way.
    9:36 PM      Thursday; August 22, 2013
      iMac 2.5Ghz 5i 2011 (Mountain Lion 10.8.4)
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb (Snow Leopard 10.6.8)
     Mac OS X (10.6.8),
     Couple of iPhones and an iPad
    "Limit the Logs to the Bits above Binary Images."  No, Seriously

Maybe you are looking for

  • I sent my iPhone in for service last Friday..

    The representative I spoke to told me that it would take 5 business days from the day I sent out my phone until I recieved it back. UPS confirmed deliverly on Tuesday September 3rd, but when I check my repair status on the Apple website, it still say

  • IPOD NANO FLASHING ON AND OFF

    My Ipod nano is flashing on and off when charging and does not respond when not charging. has anybody experienced this before? Is it fixable?

  • ISE Wired 802.1x with Foundry access switch ,not show "Device Port"

    Our customer wanna enable wired 802.1x for user and machine authentication on Foundry Switch. They want to use ISE as radius server.We try it ,but the ISE report can't show which port the client is connectd on the switch. We get the tcp dump packets

  • Need to send email on failure of BeX broadcasting

    Hi experts, We have a requirement where users should receive a email when the broadcaster setting triggered in background[process chain] failed due to some reason [for ex: memory shortage]. User is willing to have details for the failure and for whic

  • Inability to Register GPI Index with DIAdem 10.2

    Hello, I am trying to use a Spider8 from HBM with DIAdem 10.2, DAC Bundle.  My previous version of 9.1 Professional DAC Kit did not have any problems with the .dll DIAdem needed.  Now, when I try to perform the same setup to register the Spider withi