|
|
|
รูปภาพไม่โชว์ ช่วยดูหน่อยครับ ????????????????????????????? |
|
|
|
|
|
|
|
ผมมีปัญหาอยู่ว่าตอนเก็บข้อมูลรูปภาพลง db สมมุติข้อมูลจะมีค่า {byte[111115]} แต่ตอนดึงออกมา มันออกมาแค่ {byte[13]} ไม่ว่าจะเก็บรูปได้ๆๆๆ ดึงออกมาก็มีค่า {byte[13]} เหมือนเดิมอ่ะครับ ช่วยดูโค้ดตอนเก็บข้อมูลลง db หน่อยครับว่าถูกอ่ะป่าว
Code (C#)
private void SponsorInsert(MSponsor tb_Sponsor)
{
tb_Sponsor.SponsorID = GenNewID("Sponsor");
SqlConnection con = new SqlConnection();
string strSQL = "Insert Into Sponsor (ID,Name,Address,Tel,DateTime,Money,Pic,CashierID)";
strSQL += "Values('" + tb_Sponsor.SponsorID + "','" + tb_Sponsor.SponsorName + "','" + tb_Sponsor.SponsorAddress + "','" + tb_Sponsor.SponsorTel + "',CAST('" + tb_Sponsor.SponsorDateTimeFormatEN + "' as datetime),'" + tb_Sponsor.SponsorMoney + "','" + tb_Sponsor.SponsorPic + "','" + tb_Sponsor.SponsorCashierID + "')";
try
{
con.ConnectionString = strConn;
con.Open();
SqlCommand com = new SqlCommand();
com.Connection = con;
com.CommandType = CommandType.Text;
com.CommandText = strSQL;
int chk = 0;
chk = com.ExecuteNonQuery();
if (chk != 0)
{
//Call Function Query
FindSponsor(tb_Sponsor.SponsorName);
Clear();
MessageBox.Show(insertsuccess, "Carvaly", MessageBoxButtons.OK, MessageBoxIcon.Information);
}
else
{
MessageBox.Show(inserterror, "Carvaly", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
}
catch { MessageBox.Show(inserterror, "Carvaly", MessageBoxButtons.OK, MessageBoxIcon.Error); }
finally
{
con.Close();
}
}
Tag : .NET, Ms SQL Server 2005, Win (Windows App), C#, VS 2008 (.NET 3.x)
|
ประวัติการแก้ไข 2010-09-05 00:56:40 2010-09-05 01:01:29
|
|
|
|
|
Date :
2010-09-05 00:54:54 |
By :
pangpoy |
View :
1121 |
Reply :
1 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Go to: [url=https://www.thaicreate.com/dotnet/forum/043583.html][c# win] มันอะไรกันนักหนาเนี่ย image + picturebox เนี่ย [/url]
|
|
|
|
|
Date :
2010-09-05 10:56:19 |
By :
tungman |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 05
|