mysql datatypes

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
dannymc1983
Forum Commoner
Posts: 80
Joined: Wed Feb 16, 2005 7:24 am

mysql datatypes

Post by dannymc1983 »

does anyone know what the maximum capacities of the
1. tinyblob
2. blob
3. mediumblob
4. longblob

data types are in KILOBYTES??
User avatar
hawleyjr
BeerMod
Posts: 2170
Joined: Tue Jan 13, 2004 4:58 pm
Location: Jax FL & Spokane WA USA

Post by hawleyjr »

User avatar
feyd
Neighborhood Spidermoddy
Posts: 31559
Joined: Mon Mar 29, 2004 3:24 pm
Location: Bothell, Washington, USA

Post by feyd »

off the top of my memory stack:
  1. 256 bytes
  2. 65535 bytes (64KB)
  3. 16,777,215 bytes (16MB)
  4. 4,294,967,295 bytes (4GB)
User avatar
anjanesh
DevNet Resident
Posts: 1679
Joined: Sat Dec 06, 2003 9:52 pm
Location: Mumbai, India

Post by anjanesh »

Post Reply