我想将我的编辑框数据添加到本地 table?
I want to add my editbox data to a local table?
如何从编辑框向本地 table 添加数据。我对我的代码做了很多更改 onButton
点击。
我已经添加了这段代码
Data.execute("insert into Sample_Table values('Name')",Pages.Page1.EditBox1.text);
alert(Pages.Page1.EditBox1.text);
但是我的数据没有添加到Sample_Table。
如果有人可以提供帮助,我该如何向其中添加数据。
有一篇关于数据集查询的非常有用的文档,您应该查看它:
http://www.smartface.io/developer/guides/data-network/sql-query-execution/
试试下面的代码:
var myEditbox = new SMF.UI.EditBox({
left : "10%",
top : "20%",
text : ""
});
var myButton1 = new SMF.UI.TextButton({
left : "10%",
top : "40%",
text : "create insert",
onPressed : function (e) {
Data.execute("Create table Sample_Table (col1 int)");
Data.execute("insert into Sample_Table (col1) values(?)", myEditbox.text);
}
});
var myButton2 = new SMF.UI.TextButton({
left : "10%",
top : "60%",
text : "value",
onPressed : function (e) {
var myValue = Data.execute('select col1 from Sample_Table where rowId = 1');
alert(myValue);
}
});
将这 3 个对象添加到您的页面,它将起作用。
如何从编辑框向本地 table 添加数据。我对我的代码做了很多更改 onButton
点击。
我已经添加了这段代码
Data.execute("insert into Sample_Table values('Name')",Pages.Page1.EditBox1.text);
alert(Pages.Page1.EditBox1.text);
但是我的数据没有添加到Sample_Table。 如果有人可以提供帮助,我该如何向其中添加数据。
有一篇关于数据集查询的非常有用的文档,您应该查看它: http://www.smartface.io/developer/guides/data-network/sql-query-execution/
试试下面的代码:
var myEditbox = new SMF.UI.EditBox({
left : "10%",
top : "20%",
text : ""
});
var myButton1 = new SMF.UI.TextButton({
left : "10%",
top : "40%",
text : "create insert",
onPressed : function (e) {
Data.execute("Create table Sample_Table (col1 int)");
Data.execute("insert into Sample_Table (col1) values(?)", myEditbox.text);
}
});
var myButton2 = new SMF.UI.TextButton({
left : "10%",
top : "60%",
text : "value",
onPressed : function (e) {
var myValue = Data.execute('select col1 from Sample_Table where rowId = 1');
alert(myValue);
}
});
将这 3 个对象添加到您的页面,它将起作用。