remotely insert picture into database

Ask a Question related to Coldfusion Database Access, Design and Development.

  1. #1

    Default remotely insert picture into database

    Advice please - i have got a form which inserts data into my database - i also want to insert jpegs into the database
    any advice would be most appreciated.

    Mark
    quiero mas Guest

  2. Similar Questions and Discussions

    1. Is it possible to insert a picture in a form?
      The person filling out the form would insert a picture in a space provided.... all of which could then be distributed.... Or if I can't do this in a...
    2. Picture database - MAC - IDCS/Quark
      Is there a way in indesign cs (or quark for the multiprogram users) to link information to pictures such as a picture directory. It is easy to flow...
    3. Database Insert
      Is there anybody out there who has worked through the Jeffrey Bardzell book "Dreamweaver MX 2004 with asp, Coldfusion and php"? By various means I...
    4. insert data into database
      :confused; Please help, I haven't got a clue what I am doing. I have a page that I wish people to enter data then submit it to a Microsoft SQL...
    5. Creating a picture database
      Hello everyone, I am new to Filemaker, and I was wondering if anyone could help me with a problem. I am trying to make a database of several...
  3. #2

    Default Re: remotely insert picture into database

    How about uploading the jpeg to a directory and then insert the file path to
    that particular jpeg with the jpeg's name appended to the end into your DB
    (instead of trying to upload binary data into your DB)? You can define that
    column in your DB where the path and filename is to be a hyperlink as well.

    adotfilm Guest

  4. #3

    Default Re: remotely insert picture into database

    ???????????????????????????????????
    will there be a lag since it has to go to the directory first?
    quiero mas Guest

  5. #4

    Default Re: remotely insert picture into database

    Depending on your connection, uploading a file, especially a graphic, can take
    a little time. I'd structure the code so that it uploads the graphic first, and
    after uploading is successful, write the path/filename.jpg to your DB.

    adotfilm Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139