simpel select og indsættelse i liste vil ikke virke (C#.NET)
Mit hår er 100% gråt lige nu - kan ikke _se_ hvorfor dette ikke vil virke?-----------------------------
dbclass.class >>
public List<string> getQuestions() {
string cmdstring = "SELECT * FROM questions";
List<string> questions = new List<string>();
da = new SqlDataAdapter(cmdstring, SqlString);
DataSet ds = new DataSet();
da.Fill(ds);
if (ds != null)
{
foreach (DataRow dbRow in ds.Tables[0].Rows)
{
questions.Add(dbRow["questionTitle"].ToString());
}
}
return questions;
}
---------------------------------
report.class >>
public List<string> inloadQuestions()
{
dbclass db = new dbclass();
questions = new List<string>();
questions = db.getQuestions();
return questions;
}
----------------------------------
webform.aspx [for testing] >>
report r = new report();
List<string> ql = new List<string>();
ql = r.inloadQuestions();
for (int i = 0; i < ql.Count; i++)
{
TextBox1.Text += ql[i];
}