Hi!
I have three records: "search","product" and "stock".
When I make a search its show me the records searched on my textboxs ("produtoStocks.Text" and "nStocksStocks.Text"). Then when I am updating it's update only on column"product". Not on "stocks". why???
Please could you help pn it:
private void button1_Click(object sender, EventArgs e)
{
{
conn = new SqlConnection(connstr);
conn.Open();
comm = new SqlCommand("update searching set product= '" + produtoStocks.Text + ", stocks=' " + nStocksStocks.Text + "' where code = " + codigoBarraStocks.Text + " ", conn);// Its happen here
try
{
comm.ExecuteNonQuery();
MessageBox.Show("Dado atualizado com exito!");
}
catch (Exception)
{
MessageBox.Show("Dado não atualizado!");
}
finally
{
conn.Close();
}
}
VulpesPosted May 6, 2014, 1:20 PM
IsraelPosted May 6, 2014, 11:41 AM
The table name is: "Searching"
The structure table is:
Column Data type Alow null
Code numeric(18,20) yes
Product nchar(20) yes
nstocks numeric(18,20) yes
Then when I click the only error its given me is: "Not saved". That's all!
The code target on the button is:
IsraelPosted May 6, 2014, 11:37 AM
The table name is: "Searching"
The structure table is:
Column Data type Alow null
Code numeric(18,20) yes
Product nchar(20) yes
nstocks numeric(18,20)
IsraelPosted May 6, 2014, 11:37 AM
The table name is: "Searching"
The structure table is:
Column Data type Alow null
Code numeric(18,20) yes
Product nchar(20) yes
nstocks numeric(18,20)
Abhay ShankerPosted May 6, 2014, 7:39 AM
do you get any error when you click button