TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
Hitendrasing Sisodiya
NA
11
2.7k
how to see only two column of sqlCe database table in daGird
Jun 18 2015 7:43 AM
Hi, i want to look only two column from SqlCe database in datagird based on the Row Index,
However I have tried
and googled around on many things along with looking through here, but now only first value of that column is showing in datagrid.
Any help is greatly appreciated!
Thanks in advance,
private void CBSalesOrderNo_SelectedIndexChanged(object sender, EventArgs e)
{
string conSTR = "Data Source=" +
(System.IO.Path.GetDirectoryName(System.Reflection.Assembly.GetExecutingAssembly().GetName().CodeBase)) +
"\\freedom.sdf;Persist Security Info=False";
try
{
SqlCeConnection conn = new SqlCeConnection(conSTR);
conn.Open();
string code = "SELECT * FROM Items WHERE Salesorder ='" + CBSalesOrderNo.Text + "'";
SqlCeDataAdapter da = new SqlCeDataAdapter(code, conn);
SqlCeCommandBuilder cmd = new SqlCeCommandBuilder(da);
DataSet dset = new DataSet();
da.Fill(dset);
if (CBSalesOrderNo.SelectedIndex > -1)
{
txtShipmentNo.Text = dset.Tables[0].Rows[0]["Shipmentno"].ToString();
txtcustName.Text = dset.Tables[0].Rows[0]["Custname"].ToString();
txtitem.Text = dset.Tables[0].Rows[0]["Itemno"].ToString();
List<BundleDetails> bundleList = new List<BundleDetails>();
string data = dset.Tables[0].Rows[0]["Bundleno"].ToString();
string data1 = dset.Tables[0].Rows[0]["Obtainable"].ToString();
if (!string.IsNullOrEmpty(data) && !string.IsNullOrEmpty(data1))
{
bundleList.Add(new BundleDetails { BundleNo = data });
bundleList.Add(new BundleDetails { Obtainable = data1 });
dataGrid1.DataSource = bundleList;
}
}
}
catch (SystemException se)
{
MessageBox.Show(se.Message);
}
}
public class BundleDetails
{
public string BundleNo { get; set; }
public string Obtainable { get; set; }
}
does any one help me...
Reply
Answers (
5
)
command parameter
textbox