Db calculate type: Difference between revisions From Online Manual

Jump to: navigation, search
(Created page with "{{smcfunc |function=db_calculate_type |usage=$smcFunc['db_calculate_type'](type_name, type_size, reverse) |description=This function will calculate the type and size for a column...")
 
No edit summary
Line 12: Line 12:


<noinclude>
<noinclude>
[[Category:Database Package Functions]]
[[Category:Database Package Functions]]</noinclude>
[[Category:2.0]]
[[Category:Customizing SMF]]
[[Category:Developing SMF]]</noinclude>

Revision as of 21:47, 8 October 2012

Usage:

$smcFunc['db_calculate_type'](type_name, type_size, reverse)


Description: This function will calculate the type and size for a column.

Parameters:

  • type_name the type of the column (e.g. int, tinyint, varchar, text, etc.)
  • type_size contains the size of the column (can be empty)
  • reverse whether or not convert types not supported by a specific DBMS.

Example:

list ($type, $size) = $smcFunc['db_calculate_type']($column['type'], $column['size']);



Advertisement: