我有一个我没有创建的Flash移动网站,但需要编辑。点击提交按钮,它会检查登录和&密码在SQL数据库中。问题是,我找不到在数据库上运行查询的方法或数据库甚至连接的位置。我已经尝试在代码中搜索“SQL”,“数据库”和“连接”等单词,但没有成功。我逐步调试了代码,在那里我找到了对方法“super”的调用,但后来又回到原来的方法然后用户登录了。有人可以解释调用数据库的位置吗?
我想知道的其他事情是: SQL连接在哪里?在主(非移动站点)中,有一个带有
行的web.config<add name="TPConnectionString1"
connectionString="DataSource=xxx.xx.xxx.xx,xxxx\sqlexpress;Initial Catalog=TP;Persist Security
Info=True;User ID=xxxxx" providerName="System.Data.SqlClient"/>
哪个(什么文件:ex.web.config,xyz.as等)在移动代码中会有类似的行?
超级(类型,气泡,可取消)有什么作用?
以下是提交按钮的方法: LoginView.mxml
private function btnclicked():void{
techController.username = txtUsername.text;
techController.password = txtPassword.text;
var evt:TechEvent = new TechEvent(TechEvent.LOGIN_USER);
this.dispatchEvent(evt);
}
这是名为的TechEvent函数:TechEvent.as
public function TechEvent(type: String, bubbles:Boolean=true, cancelable:Boolean=false)
{
super(type, bubbles, cancelable);
}
这是dispatchEvent方法:UIComponent.as
override public function dispatchEvent(event:Event):Boolean
{
if (dispatchEventHook != null)
dispatchEventHook(event, this);
return super.dispatchEvent(event);
}