Jump to content

[SOLVED] Skipping columns?


TGWSE_GY

Recommended Posts

Okay I am storing images in a mysql table the table setup looks like this:

Field                Type     Collation         Null    Key     Default  Extra           Privileges            Comment
-------------------  -------  ----------------  ------  ------  -------  --------------  --------------------  -------
CustID               int(9)   (NULL)            NO              (NULL)                   select,insert,update         
ImageID              int(50)  (NULL)            NO      PRI     (NULL)   auto_increment  select,insert,update         
ImageType            text     ascii_general_ci  YES             (NULL)                   select,insert,update         
Image                blob     (NULL)            YES             (NULL)                   select,insert,update         
DefaultProfileImage  int(1)   (NULL)            YES             (NULL)                   select,insert,update         

I am wanting to skip ImageID and DefaultProfileImage in my mysql insert statement, and here is the insert statement:

mysql_query("INSERT INTO profile_user_images ( CustID,ImageType,Image ) VALUES ($CustID, $Image1Type, $EncodedImage1");
}

I thought by not including the column names that mysql would skip them but I was wrong because the record is not even posting.

 

Thanks 8)

Link to comment
https://forums.phpfreaks.com/topic/155891-solved-skipping-columns/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.