4,328
社区成员
发帖
与我相关
我的任务
分享 public function getPjt_info():void{
var stmt:SQLStatement=new SQLStatement();
all_pjt_infos.sqlConnection=conn;
all_pjt_infos.text="select * from pjt_info";
all_pjt_infos.addEventListener(SQLEvent.RESULT,select_pjt_infos);
all_pjt_infos.execute();
}
public function select_pjt_infos(event:SQLEvent):void {
var result:SQLResult = all_pjt_infos.getResult();
select_pjt_info=result.data;
}