Search Result

Collapse
8 results in 0.0014 seconds.
Keywords
Members
Tags
blob
  •  

  • EVAS
    started a topic PHP/Mysql image problem
    in PHP

    PHP/Mysql image problem

    hello there! i got a question about blob mysql data.i have a button and on buttonclick i want to open a popup (and passing date parameter) and show some details and display a photo.if i try
    Code:
    <?php
    if (isset($_GET['p'])){
       $temp_date=$_GET['p'];
       echo "DATE : $temp_d <br>";
       $date_m=date('Y-m-d',strtotime($d));
       $connect=mysql_connect("localhost","user","pass")
    ...
    See more | Go to post

  • chirag narula
    started a topic How to upload files above 1 MB in size?
    in PHP

    How to upload files above 1 MB in size?

    Hello,
    I am working on a site currently. And I did make it live but I had to put it off due to this problem I found. I saw other threads with kind of same problem as well but nothing seems to solve mine.
    Here the php code I am using to upload files.
    Code:
     </TR>
    <tr>
    <td><h3>File: </h3></td>
    <td width="200">
    <input type="hidden" name="MAX_FILE_SIZE"
    ...
    See more | Go to post

  • CraCKerO
    started a topic BLOB performance impact

    BLOB performance impact

    Hello,

    I have a question about blob performance in sqlServer 2008

    I have a table that contains about 64 columns from which two columns are blob (image), my question is, will these blob columns have performance impact while passing select queries ?

    is creating a table which will contain these blob columns separated (and remove them from original table) will increase significantly data access performance...
    See more | Go to post

  • hassal
    started a topic store image blob in database joomla
    in CMS

    store image blob in database joomla

    Hello,
    I'm developping a new joomla component, so i want to store pictures in database table in field type : blob. i'm wondery how to proceed to do this.

    I'm using this to get file from the form :

    $file = JRequest::getVa r( 'img2', null, 'files', 'array' );
    jimport('joomla .filesystem.fil e');
    $filename = JFile::makeSafe ($file['img2']);
    $src = $file['tmp_name'];
    $image = mysql_escape_st ring(file_get_c ontents($file['img2']['tmp_name']));...
    See more | Go to post

  • vcomp
    started a topic How to Copy a Table that includes a BLOB

    How to Copy a Table that includes a BLOB

    I have a table that includes BLOBs which are audio files. I need to copy the table to another database. Normally I just copy the records and insert them into the second table but I'm guessing I can't do that with a BLOB. Any suggestions on how to accomplish this task?

    Thanks,

    Vic
    See more | Go to post

  • varbinary(max) field in sql server 2005 problems

    Code:
    CREATE TABLE Upload
    (
    uploadid INT IDENTITY(1,1) PRIMARY KEY,
    cssid INT NOT Null FOREIGN KEY REFERENCES CourseSemSub(cssid),
    teacherid VARCHAR(10) NOT NULL FOREIGN KEY REFERENCES Teacher(teacherid),
    description VARCHAR(40),
    video VARBINARY(MAX) NOT NULL
    )
    I'm unable to execute the above create table statement. It is giving the following error.
    Msg 170, Level 15,...
    See more | Go to post

  • dibyenduchatterjee
    started a topic Issue with special characters in Perl
    in Perl

    Issue with special characters in Perl

    I am getting some special characters in my browser displayed weirdly, while getting them from from the BLOB of a DB table.

    Here it is :
    " My name is �Dibyendu Chatterjee�.... ."

    I want all special characters pulled from the BLOB as it is through perl.

    Please help...
    See more | Go to post

  • Atli
    started a topic Uploading files into a MySQL database using PHP
    in PHP

    Uploading files into a MySQL database using PHP

    You may be wondering why you would want to put your files “into” the database, rather than just onto the file-system. Well, most of the time, you wouldn’t.

    In situations where your PHP application needs to store entire files, the preferred method is to save the file onto the server’s file-system, and store the physical location of the file in your database. This is generally considered to be the easiest and fastest way to store...
    See more | Go to post
Working...