var ROW_SPACER='\u00A0\u00A0\u00A0\u00A0';updateRequired=false;queueProcessing=false;currentSearchId=0;textInput=null;rowCount=35;menuTable=null;menuTableRows=new Array();previousQuery=null;var targetDoc=null;var targetWin=null;function setupSearchField(win)
{targetWin=win;targetDoc=win.document;textInput=targetDoc.getElementById('gaSearch');textInput.onkeydown=keydown;textInput.onkeyup=keyup;textInput.onfocus=processFocus;textInput.onblur=processBlur;try
{}catch(e)
{}menuTable=targetDoc.createElement('table');menuTable.className='gaMenu';menuTable.style.display='none';menuTable.cellSpacing=0;menuTable.cellPadding=0;menuTable.border=0;menuTable.style.position='absolute';menuTable.style.zIndex=100;for(var i=0;i<rowCount;i++)
{var row=menuTable.insertRow(i);var td=targetDoc.createElement('td');td.align='left';td.idx=i;td.onmousedown=goToResource;row.appendChild(td);td.appendChild(targetDoc.createTextNode('\u00A0'));menuTableRows[i]=td;}targetDoc.body.appendChild(menuTable);}function gotapi_prepareData(data)
{for(var i=0;i<data.length-1;i++)
{var offset=data[i].p;data[i].p=data[i-offset];}}function removeAllChilds(argNode)
{while(argNode.firstChild)
{argNode.removeChild(argNode.firstChild);}}function processFocus(evt)
{var value=textInput.value;if(value=='')
{setMenuVisible(false);return;}if(updateRequired) {update();}setMenuVisible(true);}function processBlur(evt)
{setMenuVisible(false);}function Module(id,path,title,url,popup)
{this.id=id;this.path=path;this.title=title;this.data=null;this.url=url;this.popup=popup;}function keyup(evt)
{var key=evt?evt.keyCode:targetWin.event.keyCode;if(key !=13 && key !=255 && key !=40 && key !=38)
{update();return false;}}function keydown(evt)
{var key=evt?evt.keyCode:targetWin.event.keyCode;if(key==13)
{showRow(selectedRow,false);var isNetscape=navigator.appName.toLowerCase().indexOf('netscape') >=0;if(isNetscape)
{if (evt.preventDefault) evt.preventDefault();if (evt.returnValue) evt.returnValue=false;if (evt.stopPropagation) evt.stopPropagation();}return false;}else if(key==40)
{selectRow(selectedRow+1,+1);setMenuVisible(true);}else if(key==38)
{selectRow(selectedRow-1,-1);setMenuVisible(true);}else if(key !=255)
{setMenuVisible(true);return true;}return false;}function selectRow(argRow,argDirection)
{var row=argRow;for(;;)
{if(row >=rowCount||row < 0||menuTableRows[row].style.display=='none')
{return;}if(menuTableRows[row].n)
{break;}row+=argDirection;}if(selectedRow >=0)
{var activeRow=menuTableRows[selectedRow];activeRow.className='gaRegularRow';}selectedRow=row;var activeRow=menuTableRows[selectedRow];activeRow.className='gaSelectedRow';}function search(argSearchId)
{if(currentSearchId !=argSearchId)
{return;}if(updateRequired)
previousQuery=null;var value=textInput.value;if(value=='')
{setMenuVisible(false);return;}if(value==previousQuery)
{return;}var extendPrevious=value.indexOf(previousQuery)==0;previousQuery=value;var keywords=value.split(/[ \t\.=<>\/\\\*_\(\):]+/);var res=new Array();for(var i=0;i<keywords.length;i++)
{res.push(new RegExp(keywords[i],"i"));}var startTime=new Date();var result=searchModules(argSearchId,res,keywords[0].toLowerCase());if(!result)
{return;}displayedRows=result;var endTime=new Date();var queryExecutionTime=endTime.getTime()-startTime.getTime();var startTime=new Date();var proceed=showResults(argSearchId,displayedRows);var endTime=new Date();var resultsRenderingTime=endTime.getTime()-startTime.getTime();if(! proceed)
{return;}selectedRow=-1;setMenuVisible(true);selectRow(0,+1);addStats('s',value+':'+queryExecutionTime+":"+resultsRenderingTime);}function searchModules(argSearchId,argRegList,argPriorityKey)
{var results=new Array();var klen=argRegList.length;for(var m=0;m<allModules.length;m++)
{var module=allModules[m];var moduleResults=new Array();var exactMatchEnd=0;var startsWithEnd=0;results.push(moduleResults);if(!module.data||!module.active) continue;var dx=module.data;if(! dx)
{continue;}var len=dx.length-1;for(var i=0;i<len;i++)
{if(exactMatchEnd+startsWithEnd > rowCount)
{break;}if(currentSearchId !=argSearchId)
{return null;}var item=dx[i];var n=dx[i].n;var matched=false;var re=null;for(var k=0;k<klen;k++)
{re=argRegList[k];if(re.test(n))
{matched=true;break;}}if(!matched)
{continue;}if(klen==1||matchItemParents(item,argRegList,re))
{if(n)
{var ln=n.toLowerCase();if(ln==argPriorityKey)
{moduleResults.splice(exactMatchEnd++,0,item);}else if(ln.indexOf(argPriorityKey)==0)
{moduleResults.splice(exactMatchEnd+startsWithEnd++,0,item);}else
{moduleResults.push(item);}}else
{moduleResults.push(item);}}}}return results;}function matchItemParents(argItem,argRes,argExcludingRe)
{var klen=argRes.length;var failed=false;for(var k=0;k<klen;k++)
{var re=argRes[k];if(re==argExcludingRe)
{continue;}var matched=false;var current=argItem;while(current)
{if(re.test(current.n))
{matched=true;break;}current=current.p;}if(!matched)
{failed=true;break;}}return !failed;}function showResults(argSearchId,argResults)
{var nonemptyModuleCount=0;for(var i=0;i<argResults.length;i++)
{if(argResults[i].length > 0) nonemptyModuleCount++;}var row=0;if(nonemptyModuleCount > 0)
{var fairCount=(rowCount - nonemptyModuleCount*2)/ nonemptyModuleCount;fairCount=Math.floor(fairCount);var leftoverCount=0;for(var i=0;i<argResults.length;i++)
{var r=argResults[i];var module=allModules[i];if(module.active && module.data && r.length > 0 && r.length < fairCount)
{leftoverCount+=fairCount - r.length;}}for(var m=0;m<allModules.length;m++)
{var module=allModules[m];if(!module.data||!module.active) continue;var moduleResults=argResults[m];if(! module.data||moduleResults.length <=0)
{continue;}if(row+1 >=rowCount) break;updateResultRow(row++,module.title,'gaHeaderRow',null);var i=0;for(;i<moduleResults.length;i++)
{if(i >=fairCount)
{if(leftoverCount==0) break;leftoverCount--;}var n=moduleResults[i];updateResultRow(row++,getResourceTitle(n),'gaRegularRow',n);}if(i < moduleResults.length)
{updateResultRow(row++,ROW_SPACER+'...','gaFooterRow',null);}}}if(row==0)
{updateResultRow(row++,'... No Matches Found ...','gaHeaderRow',null);addStats('s','-');}while(row < rowCount)
{var tableRow=menuTableRows[row++];tableRow.style.display='none';}return true;}function updateResultRow(argRowId,argTitle,argStyle,argNode)
{var row=menuTableRows[argRowId];row.firstChild.nodeValue=argTitle;row.className=argStyle;row.n=argNode;row.style.display='';}function getResourceTitle(argItem)
{var result='';var item=argItem;while(item && (item.p||item==argItem))
{name=getResourceLabel(item);result=name+(result==''?'':' \u00A0\u2192\u00A0 '+result);item=item.p;}return ROW_SPACER+result;}function getResourceLabel(argItem)
{var name=argItem.n;var type=argItem.t;if(type=='T') name='<'+name+' ... >';else if(type=='M') name=name+' (...)';else if(type=='C') name='class '+name;else if(type=='P');else if(type=='I') name='interface '+name;else if(type=='O');else if(type=='D') name=/*'\u00A7\u00A7 '+*/name;else if(type=='S') name='{'+name+':... }';else if(type=='V');return name;}function setMenuVisible(argVisible)
{if(queueProcessing) return;var visibleNow=menuTable.style.display=='';if(visibleNow==argVisible)
{return;}if(argVisible)
{showPopupNode(menuTable,textInput,3,0);}else
{menuTable.style.display='none';}if(window.opera)
{siteFrame.style.display=argVisible?'none':'';}}function showPopupNode(showNode,relativeNode,offsetX,offsetY)
{var nodeX=relativeNode.offsetLeft;var nodeY=relativeNode.offsetTop+relativeNode.offsetHeight;var node=relativeNode;while(node.offsetParent)
{node=node.offsetParent;nodeX+=node.offsetLeft;nodeY+=node.offsetTop;}showNode.style.left=(nodeX+offsetX)+'px';showNode.style.top=(nodeY+offsetY)+'px';showNode.style.display='';}function getResourceContext(argNode)
{var context=argNode.p
?getResourceContext(argNode.p)
:'';var c=argNode.c;if(c)
{c=uncompressValue(c,argNode);context=c.indexOf('http://')==0
?c:context+c;}return context;}function getResourceUrl(argNode)
{if(argNode.u||argNode.c)
{var ctx=getResourceContext(argNode);var u=argNode.u;if(! u)
{return ctx;}u=uncompressValue(u,argNode);return u.indexOf('http://')==0
?u
:ctx+u;}else
{return argNode.p?getResourceUrl(argNode.p):null;}}function uncompressValue(argValue,argNode)
{var idx=argValue.indexOf('`');if(idx < 0)
{return argValue;}var name=argNode.n;return argValue.substr(0,idx)+name+argValue.substr(idx+1);}function goToResource()
{showRow(this.idx,false)
}function showRow(argRow,argMenuVisible)
{if(argRow < 0)
{return;}setMenuVisible(argMenuVisible);var row=menuTableRows[argRow];showItem(row.n);}function update()
{if(queueProcessing) {if(textInput.value=='') {return;}updateWhenLoaded=true;var lbl=$('loading')
if(lbl) lbl.style.color='black';return;}++currentSearchId;setTimeout('search('+currentSearchId+')',1);}function showItem(argItem)
{var url=getResourceUrl(argItem);targetWin.location.href=url;}allModules=[new Module(0,gaMod,gaTitle,null,null)];function startModuleProcessing(name)
{setupSearchField(window);queueProcessing=true;}function finishModuleProcessing(name,data)
{gotapi_prepareData(data);allModules[0].data=data;allModules[0].active=true;queueProcessing=false;if(updateWhenLoaded) update();document.getElementById('gaWait').style.display='none';document.getElementById('gaInfo').style.display='';}function addStats(argType,argMsg)
{}function sendStats()
{}startModuleProcessing('module_mysql.js');var P = 'P';
var C = 'C';
var I = 'I';
var M = 'M';
var O = 'O';
var T = 'T';
var D = 'D';
var S = 'S';
var V = 'V';
var tmp = new Array(
{t:D,n:'MySQL',u:'index.html',c:'http://dev.mysql.com/doc/refman/4.1/en/',p:1},
{t:D,n:'Data Types',u:'data-types.html',p:1},
{t:D,n:'BIT',u:'numeric-type-overview.html#id2951068',p:1},
{t:D,n:'TINYINT',u:'numeric-type-overview.html#id2951134',p:2},
{t:D,n:'BOOL',u:'numeric-type-overview.html#id2951233',p:3},
{t:D,n:'SMALLINT',u:'numeric-type-overview.html#id2951413',p:4},
{t:D,n:'MEDIUMINT',u:'numeric-type-overview.html#id2951491',p:5},
{t:D,n:'INT',u:'numeric-type-overview.html#id2951569',p:6},
{t:D,n:'INTEGER',u:'numeric-type-overview.html#id2951640',p:7},
{t:D,n:'BIGINT',u:'numeric-type-overview.html#id2951705',p:8},
{t:D,n:'FLOAT',u:'numeric-type-overview.html#id2951954',p:9},
{t:D,n:'DOUBLE',u:'numeric-type-overview.html#id2952108',p:10},
{t:D,n:'DECIMAL',u:'numeric-type-overview.html#id2952482',p:11},
{t:D,n:'DEC',u:'numeric-type-overview.html#id2952677',p:12},
{t:D,n:'DATETIME',u:'datetime.html',p:13},
{t:D,n:'DATE',u:'datetime.html',p:14},
{t:D,n:'TIMESTAMP',u:'datetime.html',p:15},
{t:D,n:'TIME',u:'time.html',p:16},
{t:D,n:'YEAR',u:'year.html',p:17},
{t:D,n:'CHAR',u:'char.html',p:18},
{t:D,n:'VARCHAR',u:'char.html',p:19},
{t:D,n:'BINARY',u:'binary-varbinary.html',p:20},
{t:D,n:'VARBINARY',u:'binary-varbinary.html',p:21},
{t:D,n:'BLOB',u:'blob.html',p:22},
{t:D,n:'TEXT',u:'blob.html',p:23},
{t:D,n:'ENUM',u:'enum.html',p:24},
{t:D,n:'SET',u:'set.html',p:25},
{t:D,n:'Storage Size',u:'storage-requirements.html',p:26},
{t:D,n:'Functions',u:'functions.html',p:28},
{t:M,n:'ASCII',u:'string-functions.html#id2968644',p:1},
{t:M,n:'BIN',u:'string-functions.html#id2968757',p:2},
{t:M,n:'BIT_LENGTH',u:'string-functions.html#id2968852',p:3},
{t:M,n:'CHAR',u:'string-functions.html#id2968927',p:4},
{t:M,n:'CHAR_LENGTH',u:'string-functions.html#id2969048',p:5},
{t:M,n:'CHARACTER_LENGTH',u:'string-functions.html#id2969121',p:6},
{t:M,n:'CONCAT',u:'string-functions.html#id2969180',p:7},
{t:M,n:'CONCAT_WS',u:'string-functions.html#id2969290',p:8},
{t:M,n:'CONV',u:'string-functions.html#id2969410',p:9},
{t:M,n:'ELT',u:'string-functions.html#id2969546',p:10},
{t:M,n:'EXPORT_SET',u:'string-functions.html#id2969666',p:11},
{t:M,n:'FIELD',u:'string-functions.html#id2969783',p:12},
{t:M,n:'FIND_IN_SET',u:'string-functions.html#id2969926',p:13},
{t:M,n:'FORMAT',u:'string-functions.html#id2970056',p:14},
{t:M,n:'HEX',u:'string-functions.html#id2970154',p:15},
{t:M,n:'INSERT',u:'string-functions.html#id2970274',p:16},
{t:M,n:'INSTR',u:'string-functions.html#id2970400',p:17},
{t:M,n:'LCASE',u:'string-functions.html#id2970492',p:18},
{t:M,n:'LEFT',u:'string-functions.html#id2970550',p:19},
{t:M,n:'LENGTH',u:'string-functions.html#id2970624',p:20},
{t:M,n:'LOAD_FILE',u:'string-functions.html#id2970718',p:21},
{t:M,n:'LOCATE',u:'string-functions.html#id2970828',p:22},
{t:M,n:'LOWER',u:'string-functions.html#id2970956',p:23},
{t:M,n:'LPAD',u:'string-functions.html#id2971035',p:24},
{t:M,n:'LTRIM',u:'string-functions.html#id2971133',p:25},
{t:M,n:'MAKE_SET',u:'string-functions.html#id2971205',p:26},
{t:M,n:'MID',u:'string-functions.html#id2971326',p:27},
{t:M,n:'OCT',u:'string-functions.html#id2971410',p:28},
{t:M,n:'OCTET_LENGTH',u:'string-functions.html#id2971504',p:29},
{t:M,n:'ORD',u:'string-functions.html#id2971562',p:30},
{t:M,n:'POSITION',u:'string-functions.html#id2971654',p:31},
{t:M,n:'QUOTE',u:'string-functions.html#id2971730',p:32},
{t:M,n:'REPEAT',u:'string-functions.html#id2971831',p:33},
{t:M,n:'REPLACE',u:'string-functions.html#id2971927',p:34},
{t:M,n:'REVERSE',u:'string-functions.html#id2972023',p:35},
{t:M,n:'RIGHT',u:'string-functions.html#id2972095',p:36},
{t:M,n:'RPAD',u:'string-functions.html#id2972174',p:37},
{t:M,n:'RTRIM',u:'string-functions.html#id2972276',p:38},
{t:M,n:'SOUNDEX',u:'string-functions.html#id2972348',p:39},
{t:M,n:'SPACE',u:'string-functions.html#id2972525',p:40},
{t:M,n:'SUBSTRING',u:'string-functions.html#id2972601',p:41},
{t:M,n:'SUBSTRING_INDEX',u:'string-functions.html#id2972804',p:42},
{t:M,n:'TRIM',u:'string-functions.html#id2972924',p:43},
{t:M,n:'UCASE',u:'string-functions.html#id2973052',p:44},
{t:M,n:'UNHEX',u:'string-functions.html#id2973119',p:45},
{t:M,n:'UPPER',u:'string-functions.html#id2973207',p:46},
{t:M,n:'ABS',u:'mathematical-functions.html#id2975107',p:47},
{t:M,n:'ACOS',u:'mathematical-functions.html#id2975186',p:48},
{t:M,n:'ASIN',u:'mathematical-functions.html#id2975282',p:49},
{t:M,n:'ATAN',u:'mathematical-functions.html#id2975373',p:50},
{t:M,n:'CEILING',u:'mathematical-functions.html#id2975556',p:51},
{t:M,n:'COS',u:'mathematical-functions.html#id2975651',p:52},
{t:M,n:'COT',u:'mathematical-functions.html#id2975722',p:53},
{t:M,n:'CRC32',u:'mathematical-functions.html#id2975794',p:54},
{t:M,n:'DEGREES',u:'mathematical-functions.html#id2975876',p:55},
{t:M,n:'EXP',u:'mathematical-functions.html#id2975944',p:56},
{t:M,n:'FLOOR',u:'mathematical-functions.html#id2976021',p:57},
{t:M,n:'LN',u:'mathematical-functions.html#id2976147',p:58},
{t:M,n:'LOG',u:'mathematical-functions.html#id2976238',p:59},
{t:M,n:'LOG2',u:'mathematical-functions.html#id2976373',p:60},
{t:M,n:'LOG10',u:'mathematical-functions.html#id2976464',p:61},
{t:M,n:'MOD',u:'mathematical-functions.html#id2976583',p:62},
{t:M,n:'PI',u:'mathematical-functions.html#id2976752',p:63},
{t:M,n:'POW',u:'mathematical-functions.html#id2976839',p:64},
{t:M,n:'RADIANS',u:'mathematical-functions.html#id2976929',p:65},
{t:M,n:'RAND',u:'mathematical-functions.html#id2976999',p:66},
{t:M,n:'ROUND',u:'mathematical-functions.html#id2977247',p:67},
{t:M,n:'SIGN',u:'mathematical-functions.html#id2977395',p:68},
{t:M,n:'SIN',u:'mathematical-functions.html#id2977482',p:69},
{t:M,n:'SQRT',u:'mathematical-functions.html#id2977558',p:70},
{t:M,n:'TAN',u:'mathematical-functions.html#id2977635',p:71},
{t:M,n:'TRUNCATE',u:'mathematical-functions.html#id2977713',p:72},
{t:M,n:'ADDDATE',u:'date-and-time-functions.html#id2978047',p:73},
{t:M,n:'ADDTIME',u:'date-and-time-functions.html#id2978192',p:74},
{t:M,n:'CONVERT_TZ',u:'date-and-time-functions.html#id2978305',p:75},
{t:M,n:'CURDATE',u:'date-and-time-functions.html#id2978480',p:76},
{t:M,n:'CURRENT_DATE',u:'date-and-time-functions.html#id2978556',p:77},
{t:M,n:'CURTIME',u:'date-and-time-functions.html#id2978619',p:78},
{t:M,n:'CURRENT_TIME',u:'date-and-time-functions.html#id2978694',p:79},
{t:M,n:'CURRENT_TIMESTAMP',u:'date-and-time-functions.html#id2978758',p:80},
{t:M,n:'DATE',u:'date-and-time-functions.html#id2978827',p:81},
{t:M,n:'DATEDIFF',u:'date-and-time-functions.html#id2978904',p:82},
{t:M,n:'DATE_ADD',u:'date-and-time-functions.html#id2979029',p:83},
{t:M,n:'DATE_FORMAT',u:'date-and-time-functions.html#id2979891',p:84},
{t:M,n:'DATE_SUB',u:'date-and-time-functions.html#id2980665',p:85},
{t:M,n:'DAY',u:'date-and-time-functions.html#id2980727',p:86},
{t:M,n:'DAYNAME',u:'date-and-time-functions.html#id2980786',p:87},
{t:M,n:'DAYOFMONTH',u:'date-and-time-functions.html#id2980854',p:88},
{t:M,n:'DAYOFWEEK',u:'date-and-time-functions.html#id2980929',p:89},
{t:M,n:'DAYOFYEAR',u:'date-and-time-functions.html#id2981009',p:90},
{t:M,n:'EXTRACT',u:'date-and-time-functions.html#id2981084',p:91},
{t:M,n:'FROM_DAYS',u:'date-and-time-functions.html#id2981194',p:92},
{t:M,n:'FROM_UNIXTIME',u:'date-and-time-functions.html#id2981280',p:93},
{t:M,n:'GET_FORMAT',u:'date-and-time-functions.html#id2981437',p:94},
{t:M,n:'HOUR',u:'date-and-time-functions.html#id2981794',p:95},
{t:M,n:'LAST_DAY',u:'date-and-time-functions.html#id2981886',p:96},
{t:M,n:'LOCALTIME',u:'date-and-time-functions.html#id2981980',p:97},
{t:M,n:'LOCALTIMESTAMP',u:'date-and-time-functions.html#id2982042',p:98},
{t:M,n:'MAKEDATE',u:'date-and-time-functions.html#id2982110',p:99},
{t:M,n:'MAKETIME',u:'date-and-time-functions.html#id2982205',p:100},
{t:M,n:'MICROSECOND',u:'date-and-time-functions.html#id2982296',p:101},
{t:M,n:'MINUTE',u:'date-and-time-functions.html#id2982385',p:102},
{t:M,n:'MONTH',u:'date-and-time-functions.html#id2982460',p:103},
{t:M,n:'MONTHNAME',u:'date-and-time-functions.html#id2982534',p:104},
{t:M,n:'NOW',u:'date-and-time-functions.html#id2982602',p:105},
{t:M,n:'PERIOD_ADD',u:'date-and-time-functions.html#id2982679',p:106},
{t:M,n:'PERIOD_DIFF',u:'date-and-time-functions.html#id2982772',p:107},
{t:M,n:'QUARTER',u:'date-and-time-functions.html#id2982873',p:108},
{t:M,n:'SECOND',u:'date-and-time-functions.html#id2982948',p:109},
{t:M,n:'SEC_TO_TIME',u:'date-and-time-functions.html#id2983023',p:110},
{t:M,n:'STR_TO_DATE',u:'date-and-time-functions.html#id2983133',p:111},
{t:M,n:'SUBDATE',u:'date-and-time-functions.html#id2983319',p:112},
{t:M,n:'SUBTIME',u:'date-and-time-functions.html#id2983454',p:113},
{t:M,n:'SYSDATE',u:'date-and-time-functions.html#id2983567',p:114},
{t:M,n:'TIME',u:'date-and-time-functions.html#id2983632',p:115},
{t:M,n:'TIMEDIFF',u:'date-and-time-functions.html#id2983714',p:116},
{t:M,n:'TIMESTAMP',u:'date-and-time-functions.html#id2983840',p:117},
{t:M,n:'TIME_FORMAT',u:'date-and-time-functions.html#id2983944',p:118},
{t:M,n:'TIME_TO_SEC',u:'date-and-time-functions.html#id2984056',p:119},
{t:M,n:'TO_DAYS',u:'date-and-time-functions.html#id2984129',p:120},
{t:M,n:'UNIX_TIMESTAMP',u:'date-and-time-functions.html#id2984248',p:121},
{t:M,n:'UTC_DATE',u:'date-and-time-functions.html#id2984517',p:122},
{t:M,n:'UTC_TIME',u:'date-and-time-functions.html#id2984599',p:123},
{t:M,n:'UTC_TIMESTAMP',u:'date-and-time-functions.html#id2984681',p:124},
{t:M,n:'WEEK',u:'date-and-time-functions.html#id2984766',p:125},
{t:M,n:'WEEKDAY',u:'date-and-time-functions.html#id2985275',p:126},
{t:M,n:'WEEKOFYEAR',u:'date-and-time-functions.html#id2985358',p:127},
{t:M,n:'YEAR',u:'date-and-time-functions.html#id2985450',p:128},
{t:M,n:'YEARWEEK',u:'date-and-time-functions.html#id2985533',p:129},
{t:M,n:'AES_ENCRYPT',u:'encryption-functions.html#id2992004',p:130},
{t:M,n:'COMPRESS',u:'encryption-functions.html#id2992167',p:131},
{t:M,n:'DECODE',u:'encryption-functions.html#id2992325',p:132},
{t:M,n:'ENCODE',u:'encryption-functions.html#id2992396',p:133},
{t:M,n:'DES_DECRYPT',u:'encryption-functions.html#id2992477',p:134},
{t:M,n:'DES_ENCRYPT',u:'encryption-functions.html#id2992606',p:135},
{t:M,n:'ENCRYPT',u:'encryption-functions.html#id2992903',p:136},
{t:M,n:'MD5',u:'encryption-functions.html#id2993041',p:137},
{t:M,n:'OLD_PASSWORD',u:'encryption-functions.html#id2993153',p:138},
{t:M,n:'PASSWORD',u:'encryption-functions.html#id2993230',p:139},
{t:M,n:'SHA1',u:'encryption-functions.html#id2993393',p:140},
{t:M,n:'UNCOMPRESS',u:'encryption-functions.html#id2993501',p:141},
{t:M,n:'UNCOMPRESSED_LENGTH',u:'encryption-functions.html#id2993598',p:142},
{t:M,n:'BENCHMARK',u:'information-functions.html#id2993713',p:143},
{t:M,n:'CHARSET',u:'information-functions.html#id2993820',p:144},
{t:M,n:'COERCIBILITY',u:'information-functions.html#id2993902',p:145},
{t:M,n:'COLLATION',u:'information-functions.html#id2994256',p:146},
{t:M,n:'CONNECTION_ID',u:'information-functions.html#id2994335',p:147},
{t:M,n:'CURRENT_USER',u:'information-functions.html#id2994406',p:148},
{t:M,n:'DATABASE',u:'information-functions.html#id2994535',p:149},
{t:M,n:'FOUND_ROWS',u:'information-functions.html#id2994619',p:150},
{t:M,n:'LAST_INSERT_ID',u:'information-functions.html#id2994974',p:151},
{t:M,n:'SESSION_USER',u:'information-functions.html#id2995526',p:152},
{t:M,n:'SYSTEM_USER',u:'information-functions.html#id2995581',p:153},
{t:M,n:'USER',u:'information-functions.html#id2995637',p:154},
{t:M,n:'VERSION',u:'information-functions.html#id2995751',p:155},
{t:M,n:'DEFAULT',u:'miscellaneous-functions.html#id2995868',p:156},
{t:M,n:'GET_LOCK',u:'miscellaneous-functions.html#id2995993',p:157},
{t:M,n:'INET_ATON',u:'miscellaneous-functions.html#id2996188',p:158},
{t:M,n:'INET_NTOA',u:'miscellaneous-functions.html#id2996328',p:159},
{t:M,n:'IS_FREE_LOCK',u:'miscellaneous-functions.html#id2996402',p:160},
{t:M,n:'IS_USED_LOCK',u:'miscellaneous-functions.html#id2996479',p:161},
{t:M,n:'MASTER_POS_WAIT',u:'miscellaneous-functions.html#id2996548',p:162},
{t:M,n:'RELEASE_LOCK',u:'miscellaneous-functions.html#id2996671',p:163},
{t:M,n:'UUID',u:'miscellaneous-functions.html#id2996767',p:164},
{t:M,n:'VALUES',u:'miscellaneous-functions.html#id2996928',p:165},
{t:M,n:'BIT_AND',u:'group-by-functions.html#id2997274',p:166},
{t:M,n:'BIT_OR',u:'group-by-functions.html#id2997356',p:167},
{t:M,n:'BIT_XOR',u:'group-by-functions.html#id2997428',p:168},
{t:M,n:'COUNT',u:'group-by-functions.html#id2997504',p:169},
{t:M,n:'GROUP_CONCAT',u:'group-by-functions.html#id2997799',p:170},
{t:M,n:'MIN',u:'group-by-functions.html#id2998137',p:171},
{t:M,n:'STD',u:'group-by-functions.html#id2998307',p:172},
{t:M,n:'SUM',u:'group-by-functions.html#id2998385',p:173},
{t:M,n:'VARIANCE',u:'group-by-functions.html#id2998460',p:174},
{t:D,n:'LIKE',u:'string-comparison-functions.html',p:175},
{t:D,n:'REGEXP',u:'string-comparison-functions.html',p:176},
{t:D,n:'RLIKE',u:'string-comparison-functions.html',p:177},
{t:D,n:'ESCAPE',u:'string-comparison-functions.html',p:178},
{t:M,n:'STRCMP',u:'string-comparison-functions.html',p:179},
{t:D,n:'DIV',u:'arithmetic-functions.html',p:180},
{t:D,n:'MATCH ... AGAINST',u:'fulltext-search.html',p:181},
{t:M,n:'CAST',u:'cast-functions.html',p:182},
{t:M,n:'CONVERT',u:'cast-functions.html',p:183},
{t:D,n:'BINARY',u:'cast-functions.html',p:184},
{t:D,n:'Statements',u:'sql-syntax.html',p:213},
{t:D,n:'ALTER DATABASE',u:'alter-database.html',p:1},
{t:D,n:'ALTER TABLE',u:'alter-table.html',p:2},
{t:D,n:'CREATE DATABASE',u:'create-database.html',p:3},
{t:D,n:'CREATE INDEX',u:'create-index.html',p:4},
{t:D,n:'CREATE TABLE',u:'create-table.html',p:5},
{t:D,n:'DROP DATABASE',u:'drop-database.html',p:6},
{t:D,n:'DROP INDEX',u:'drop-index.html',p:7},
{t:D,n:'DROP TABLE',u:'drop-table.html',p:8},
{t:D,n:'RENAME TABLE',u:'rename-table.html',p:9},
{t:D,n:'DELETE',u:'delete.html',p:10},
{t:D,n:'DO',u:'do.html',p:11},
{t:D,n:'HANDLER',u:'handler.html',p:12},
{t:D,n:'INSERT',u:'insert.html',p:13},
{t:D,n:'LOAD DATA INFILE',u:'load-data.html',p:14},
{t:D,n:'REPLACE',u:'replace.html',p:15},
{t:D,n:'SELECT',u:'select.html',p:16},
{t:D,n:'JOIN',u:'join.html',p:17},
{t:D,n:'UNION',u:'union.html',p:18},
{t:D,n:'Subqueries',u:'subqueries.html',p:19},
{t:D,n:'TRUNCATE',u:'truncate.html',p:20},
{t:D,n:'UPDATE',u:'update.html',p:21},
{t:D,n:'DESCRIBE',u:'describe.html',p:22},
{t:D,n:'USE',u:'use.html',p:23},
{t:D,n:'START TRANSACTION',u:'commit.html',p:24},
{t:D,n:'COMMIT',u:'commit.html',p:25},
{t:D,n:'ROLLBACK',u:'commit.html',p:26},
{t:D,n:'SAVEPOINT',u:'savepoints.html',p:27},
{t:D,n:'LOCK TABLES',u:'lock-tables.html',p:28},
{t:D,n:'UNLOCK TABLES',u:'lock-tables.html',p:29},
{t:D,n:'SET TRANSACTION',u:'set-transaction.html',p:30},
{t:D,n:'DROP USER',u:'drop-user.html',p:31},
{t:D,n:'GRANT',u:'grant.html',p:32},
{t:D,n:'REVOKE',u:'revoke.html',p:33},
{t:D,n:'SET PASSWORD',u:'set-password.html',p:34},
{t:D,n:'ANALYZE TABLE',u:'analyze-table.html',p:35},
{t:D,n:'BACKUP TABLE',u:'backup-table.html',p:36},
{t:D,n:'CHECK TABLE',u:'check-table.html',p:37},
{t:D,n:'CHECKSUM TABLE',u:'checksum-table.html',p:38},
{t:D,n:'OPTIMIZE TABLE',u:'optimize-table.html',p:39},
{t:D,n:'REPAIR TABLE',u:'repair-table.html',p:40},
{t:D,n:'RESTORE TABLE',u:'restore-table.html',p:41},
{t:D,n:'SET',u:'set-option.html',p:42},
{t:D,n:'CACHE INDEX',u:'cache-index.html',p:43},
{t:D,n:'FLUSH',u:'flush.html',p:44},
{t:D,n:'KILL',u:'kill.html',p:45},
{t:D,n:'LOAD INDEX INTO CACHE',u:'load-index.html',p:46},
{t:D,n:'RESET',u:'reset.html',p:47},
{t:D,n:'EXECUTE',u:'sqlps.html',p:48},
{t:D,n:'PREPARE',u:'sqlps.html',p:49},
{t:D,n:'COLLATE',u:'charset-collate.html',p:50},
{t:D,n:'SHOW CHARACTER SET',u:'show-character-set.html',p:51},
{t:D,n:'SHOW COLLATION',u:'show-collation.html',p:52},
{t:D,n:'SHOW COLUMNS',u:'show-columns.html',p:53},
{t:D,n:'SHOW CREATE DATABASE',u:'show-create-database.html',p:54},
{t:D,n:'SHOW CREATE TABLE',u:'show-create-table.html',p:55},
{t:D,n:'SHOW DATABASES',u:'show-databases.html',p:56},
{t:D,n:'SHOW ENGINE',u:'show-engine.html',p:57},
{t:D,n:'SHOW ENGINES',u:'show-engines.html',p:58},
{t:D,n:'SHOW ERRORS',u:'show-errors.html',p:59},
{t:D,n:'SHOW GRANTS',u:'show-grants.html',p:60},
{t:D,n:'SHOW INDEX',u:'show-index.html',p:61},
{t:D,n:'SHOW INNODB STATUS',u:'show-innodb-status.html',p:62},
{t:D,n:'SHOW LOGS',u:'show-logs.html',p:63},
{t:D,n:'SHOW OPEN TABLES',u:'show-open-tables.html',p:64},
{t:D,n:'SHOW PRIVILEGES',u:'show-privileges.html',p:65},
{t:D,n:'SHOW PROCESSLIST',u:'show-processlist.html',p:66},
{t:D,n:'SHOW STATUS',u:'show-status.html',p:67},
{t:D,n:'SHOW TABLE STATUS',u:'show-table-status.html',p:68},
{t:D,n:'SHOW TABLES',u:'show-tables.html',p:69},
{t:D,n:'SHOW VARIABLES',u:'show-variables.html',p:70},
{t:D,n:'SHOW WARNINGS',u:'show-warnings.html',p:71},
{t:D,n:'PURGE MASTER LOGS',u:'purge-master-logs.html',p:72},
{t:D,n:'RESET MASTER',u:'reset-master.html',p:73},
{t:D,n:'SET SQL_LOG_BIN',u:'set-sql-log-bin.html',p:74},
{t:D,n:'SHOW BINLOG EVENTS',u:'show-binlog-events.html',p:75},
{t:D,n:'SHOW BINARY LOGS',u:'show-binary-logs.html',p:76},
{t:D,n:'SHOW MASTER STATUS',u:'show-master-status.html',p:77},
{t:D,n:'SHOW SLAVE HOSTS',u:'show-slave-hosts.html',p:78},
{t:D,n:'CHANGE MASTER TO',u:'change-master-to.html',p:79},
{t:D,n:'LOAD DATA FROM MASTER',u:'load-data-from-master.html',p:80},
{t:D,n:'LOAD TABLE <em class="replaceable"><code>tbl_name',u:'load-table-from-master.html',p:81},
{t:D,n:'MASTER_POS_WAIT()',u:'master-pos-wait.html',p:82},
{t:D,n:'RESET SLAVE',u:'reset-slave.html',p:83},
{t:D,n:'SET GLOBAL SQL_SLAVE_SKIP_COUNTER',u:'set-global-sql-slave-skip-counter.html',p:84},
{t:D,n:'SHOW SLAVE STATUS',u:'show-slave-status.html',p:85},
{t:D,n:'START SLAVE',u:'start-slave.html',p:86},
{t:D,n:'STOP SLAVE',u:'stop-slave.html',p:87},
{t:D,n:'CREATE FUNCTION',u:'create-function.html',p:88},
{t:D,n:'DROP FUNCTION',u:'drop-function.html',p:89},
{t:D,n:'Server System Variables',u:'server-system-variables.html',p:303},
{t:D,n:'Server Status Variables',u:'server-status-variables.html',p:304},
{t:D,n:'Dynamic System Variables',u:'dynamic-system-variables.html',p:305},
null);
finishModuleProcessing('module_mysql.js',tmp);
