我正在使用$scope.addDetail=function(object){
alert(object.modelTitle);
alert(object.modelDescription);
}
阅读多个表格,它可以正常工作,直到我到达某个引发MySqlReader
异常的表格。为什么会这样?
以下是创建该表的脚本:
Unrecognized GUID format
以下是阅读代码:
DROP TABLE IF EXISTS `mcdb`.`reactor_data`;
CREATE TABLE `mcdb`.`reactor_data` (
`reactorid` int(11) NOT NULL DEFAULT '0',
`max_states` tinyint(3) NOT NULL,
`link` int(11) NOT NULL DEFAULT '0',
`flags` set('activate_by_touch','remove_in_fieldset') NOT NULL DEFAULT '',
PRIMARY KEY (`reactorid`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Defines reactor information.';