I'm trying to make data available for creating a report coming from InterBase, but whenever an x appears over the datasource as the image attached.
Here below the code in c #:
protected void Button1_Click(object sender, EventArgs e)
{
StiReport report = new StiReport();
report.RegData("Procedimentos", ObterProcedimentoCad());
report.Dictionary.Connect(true);
StiWebDesigner1.Design(report);
}
private DataTable ObterProcedimentoCad()
{
StringBuilder sql = new StringBuilder();
//sql.Append("SELECT prc_id, nome FROM PROCEDIMENTOS");
sql.Append("SELECT * FROM ACESSOS");
Database data = new Database(connString);
DataTable dt = new DataTable();
dt = data.Select(sql.ToString());
return dt;
}

Thus the data do not appear in the report, although the display table fields. How to fix this?