Advertisement
Rochet2

Types: C++ to DB

Jun 26th, 2013
604
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. normal type = defined type = DB type
  2. unsigned char = uint8 = tinyint(3) unsigned
  3. unsigned short int = uint16 = smallint(5) unsigned
  4. unsigned (long int / int) = uint32 = mediumint(8) unsigned // basically just to limit range&space? 2^24
  5. unsigned (long int / int) = uint32 = int(10) unsigned
  6. unsigned long long int = uint64 = bigint(20) unsigned
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement