我正在使用访问表
我正在使用包含这些公共函数的oleDBManager:
/// <summary>
/// Excecutes an SELECT query and returns the data.
/// </summary>
/// <param name="query">the query string</param>
/// <returns>returns an DataTable instance with the recived data from the selection query.</returns>
public DataTable ExcecuteRead(string query) {
this.link.Open();
// ---
this.dataAdapter = new OleDbDataAdapter(query, this.link);
// ---
this.dataTable = new DataTable();
this.dataAdapter.Fill(this.dataTable);
// ---
this.link.Close();
// ---
return this.dataTable;
}
/// <summary>
/// Returns an HTML table code, with all the rows and the values of the results.
/// </summary>
/// <param name="query">the query string</param>
/// <returns>returns an HTML code as a string</returns>
public string ExcecuteTableRead(string query)
{
string output = "<table border=\"1\">";
// ---
this.dataTable = this.ExcecuteRead(query);
// ---
foreach (DataRow row in this.dataTable.Rows)
{
output += "<tr>";
// ---
foreach (object obj in row.ItemArray)
{
output += "<td>" + obj.ToString() + "</td>";
}
// ---
output += "</tr>";
}
// ---
output += "</table>";
// ---
return output;
}
/// <summary>
/// Returns an HTML table code, with all the rows and the values of the results.
/// </summary>
/// <param name="query">the query string</param>
/// <param name="max">the maximum number of rows to show</param>
/// <returns>returns an HTML code as a string</returns>
public string ExcecuteTableRead(string query, int max)
{
int i = 0;
string output = "<table border=\"1\">";
// ---
this.dataTable = this.ExcecuteRead(query);
// ---
foreach (DataRow row in this.dataTable.Rows)
{
if (i < max)
{
output += "<tr>";
// ---
foreach (object obj in row.ItemArray)
{
output += "<td>" + obj.ToString() + "</td>";
}
// ---
output += "</tr>";
}
i++;
}
// ---
output += "</table>";
// ---
return output;
}
在我的“用户”表格中,我为每个用户提供了“用户ID”,“用户名”,“密码”和“登录”。 我的问题是,当用户登录(我有用户名和密码)时,如何获取他的“登录”列的值? 如果我可以把它设置成一个int会更好(如果重要的话,我已经设置了“登录”列来访问'text'中的'number'。
编辑:我要做的是更新用户登录的次数。如果有更好的方法,请告诉我。
答案 0 :(得分:0)
你可以使用返回对象的ExecuteScalar()函数
或
你可以使用ExecuteRead()和
将它存储在像这样的字符串中
string logins= dt.rows[0].itemarray[0].tostring()
答案 1 :(得分:0)
<强>答案:
所以,虽然没有人回答我,但我自己也学会了:
这里是代码的全部内容(用户名是用户名,也是同名的字符串,登录名是列,用户是表)
string logins = db.ExcecuteTableRead("SELECT logins FROM users WHERE username='" + username + "'");
logins = logins.Substring(21, 20);
logins = Regex.Match(logins, @"\d+").Value;
int loginsInt = Int32.Parse(logins) + 1;
int a = db.ExecuteQuery("UPDATE users SET logins='" + loginsInt.ToString() + "' WHERE username='" + username + "'");