- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我已经使用 asp.net 和 SQL 服务器为 android 应用程序创建了 Restful API(基于 JSON 的 API)。通过以下链接,我成功地通过 Restful Web 服务从 android 应用程序到 sql server 数据库执行了 CURD 操作:
http://www.tutecentral.com/restful-api-for-android-part-1/
现在我想要的是为 2 个或更多相关的 sql 选择查询创建单个 web 方法并将结果添加到单个数据表中,即在执行第二个查询时将值添加到数据表行的剩余列中。但是当我尝试这样做时我的应用程序崩溃了:
上述场景的 Web 服务方法是:
public DataTable GetStaffProfile(string userid)
{
String faculty_id="";
DataTable staffProfile = new DataTable();
//Adding data to these columns on executing 1st sql query
staffProfile.Columns.Add(new DataColumn("eid", typeof(String)));
staffProfile.Columns.Add(new DataColumn("empid", typeof(String)));
staffProfile.Columns.Add(new DataColumn("userid", typeof(String)));
staffProfile.Columns.Add(new DataColumn("fname", typeof(String)));
staffProfile.Columns.Add(new DataColumn("lname", typeof(String)));
staffProfile.Columns.Add(new DataColumn("fathername", typeof(String)));
staffProfile.Columns.Add(new DataColumn("dob", typeof(String)));
staffProfile.Columns.Add(new DataColumn("nationality", typeof(String)));
staffProfile.Columns.Add(new DataColumn("religion", typeof(String)));
staffProfile.Columns.Add(new DataColumn("cnic", typeof(String)));
staffProfile.Columns.Add(new DataColumn("gender", typeof(String)));
staffProfile.Columns.Add(new DataColumn("domicile", typeof(String)));
staffProfile.Columns.Add(new DataColumn("designame", typeof(String)));
staffProfile.Columns.Add(new DataColumn("dname", typeof(String)));
staffProfile.Columns.Add(new DataColumn("employmentdate", typeof(String)));
//Adding data to these columns on executing 2nd sql query
staffProfile.Columns.Add(new DataColumn("qualification", typeof(String)));
staffProfile.Columns.Add(new DataColumn("university", typeof(String)));
staffProfile.Columns.Add(new DataColumn("majors", typeof(String)));
staffProfile.Columns.Add(new DataColumn("year", typeof(String)));
staffProfile.Columns.Add(new DataColumn("city", typeof(String)));
staffProfile.Columns.Add(new DataColumn("country", typeof(String)));
if (dbConnection.State.ToString() == "Closed")
{
dbConnection.Open();
}
string query = "SELECT eid, empid, userid, fname,lname, fathername, dob, nationality, religion, cnic, gender, domicile,(select title from uw_designation where desigid=uw_employee.desigid) as designame,(select dname from uw_department where "
+"deptid=uw_employee.deptid) as dname, employmentdate FROM uw_employee where userid='"+userid+"'";
SqlCommand command = new SqlCommand(query, dbConnection);
SqlDataReader reader = command.ExecuteReader();
if (reader.HasRows)
{
while (reader.Read())
{
faculty_id = reader["eid"] as string;
staffProfile.Rows.Add(reader["eid"], reader["empid"], reader["userid"], reader["fname"], reader["lname"], reader["fathername"], reader["dob"], reader["nationality"],
reader["religion"], reader["cnic"], reader["gender"], reader["domicile"], reader["designame"], reader["dname"],
reader["employmentdate"]);
}
}
reader.Close();
//getting staff qualification
string query2 = "SELECT TOP(1) eid, qualification, university, majors, year,city,country " +
"FROM uw_employee_education where eid='"+faculty_id+"'";
SqlCommand command2 = new SqlCommand(query2, dbConnection);
SqlDataReader reader1 = command2.ExecuteReader();
if (reader1.HasRows)
{
while (reader1.Read())
{
staffProfile.Rows[0]["qualification"]=reader1["qualification"] as string;
staffProfile.Rows[0]["university"] = reader1["university"]as string;
staffProfile.Rows[0]["majors"] = reader1["majors"] as string;
staffProfile.Rows[0]["year"] = reader1["year"] as string;
staffProfile.Rows[0]["city"] = reader1["city"] as string;
staffProfile.Rows[0]["country"] = reader1["country"] as string;
}
}
reader1.Close();
dbConnection.Close();
return staffProfile;
}
两个查询只返回一个结果。各种帮助表示赞赏。提前致谢。
最佳答案
你会尝试为第二个查询更改现有的 SqlCommand
吗?
string query2 = "SELECT TOP(1) eid, qualification, university, majors, year,city,country " +
"FROM uw_employee_education where eid='" + faculty_id + "'";
command.CommandText = query2;
SqlDataReader reader1 = command.ExecuteReader();
此外,请在创建 SQL 查询时考虑 SQL 注入(inject)。我建议您使用 SqlParameter
。
关于c# - 如何在特定 DataTable 行的剩余列中添加值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47899272/
该插件的绝大多数文档表明您可以使用 对其进行初始化 $('#example').dataTable(); 但是http://www.datatables.net/examples/api/multi_
我有一个 SQL 查询,它获取一些数据(dbtable 表中的语言列)。查询使用 GROUP_CONCAT,因此一个单元格有多个结果,例如 "Ajax, jQuery, HTML, CSS". 我想要
我有一个由 jQuery DataTables 增强的动态表,它显示一个与此类似的自定义对象 example . JSON: { "data": [ { "name": "Ti
我有两个数据表。首先是 DataTable NameAddressPhones = new DataTable(); 具有三列姓名、地址和电话号码。但我只想要两列姓名和地址数据,所以我想将这些列(包含
有没有办法将“处理...”语言放在 DataTable 对象的顶部而不是垂直中间?如果我有一张长 table ,它会隐藏在页面之外,因为它的默认位置在中间。 $('#example').dataTab
当我们向 DataTables 添加自定义过滤器时: $.fn.dataTable.ext.search.push(function(settings, data, dataIndex) { ..
我可以更改 dataTables 中搜索文本字段的宽度吗? 我现在正在编写以下代码,但它不起作用。 $('#example').dataTable() .columnFilter(
使用 DataTables plugin 时 如何使分页和 Showing 1 to 8 of 8 entries 出现在顶部而不是底部? 谢谢 最佳答案 每个数据表控件都以唯一的 id 命名计划之后
Angular 版本:6.0.4 ~ 节点版本:10.4.1 ~ NPM 版本:6.1.0 我看到这个问题被问了很多次,但没有回答。 关注这些后instructions to install angu
当单击外部按钮时,我正在尝试使用 DataTable(新版本)修改单元格值。我现在有以下内容: $(document).on('click', '.dropdown-menu li a', funct
引用:http://datatables.net/reference/api/page.info() 我正在尝试获取 ajax POST 生成的 jQuery DataTable 的当前分页信息。 使
以下对我有用: $('#datatable').on('page.dt', function() { alert("changed"); }); 每当我更改页面时,都会显示警报。但是如果我想警
我有一个 HTML 表,我在其中应用了 DataTables 函数。我使用表的第一行并将"template"类应用为我的模板行。然后选择此格式并使用 JSON feed 填充表中的所有行。问题是 Da
我有一个由 DataTables 1.10 驱动的表。过滤已打开。当我在下面谈论“做搜索”时,我指的是使用该表的过滤功能。 问题描述 关闭 stateSave 一切正常。但是,当 stateSave
看看这个例子,http://www.datatables.net/examples/api/multi_filter_select.html ,它使用 DataTable API 中的 columns
我正在使用 jQuery DataTables 在 spring 4.x 应用程序中创建一个报表页面来呈现报表。 通过 Jackson 消息转换器解析后,服务器返回以下对象。 { "data"
我在刷新 Primesfaces 的延迟加载数据表时遇到了一些问题。我正在使用 3.0.M4。 使用过滤器在您的示例中使用三个类。还尝试了仅使用延迟加载的示例,但随后未在 Controller 中重新
在 Blue Prism (BP) 中,有一种叫做 Collection 的东西,它基本上是 C# 中的 DataTable。在 BP 中,您可以在集合中拥有集合。我的问题是,您可以在 C# 的 Da
我正在使用 Flutter DataTables 来显示购物车中的商品列表。现在我想编辑任何选定行的数量。有没有办法获取用户点击的行信息? 以下是我的DataTable的完整代码: class _Da
我有一个关于 primefaces 数据表组件的问题。我想将 DataTable 变量绑定(bind)到 p:dataTable,以便我能够从支持 bean 以编程方式操作第一个、行、rowsPerP
我是一名优秀的程序员,十分优秀!