PDA

View Full Version : [MySql/C#]impazzisco :(


RaouL_BennetH
14-02-2007, 18:34
da mysql:



select tempo_totale from tempi where ID_Jobs = '1';

mi restituisce:

32:30:00



Ora, non sono capace di assegnare ad una label su un form quel valore:


string monteore = "SELECT totale from tempi where ID_Jobs = '" + cmbID.ComboBox.Text + "' ";
MySqlCommand cmd = new MySqlCommand(monteore, cn);
string s = cmd.ExecuteScalar().ToString();

toolStripLabel3.Text = s;

//mi restituisce: 1.08:30:00



:cry: :muro: :mc:

RaouL_BennetH
14-02-2007, 18:52
ok, mi martello sul cranio da solo:


string monteore = "SELECT TIME_FORMAT(totale, '%H.%i') from tempi where ID_Jobs = '" + cmbID.ComboBox.Text + "' ";
MySqlCommand cmd = new MySqlCommand(monteore, cn);
string s = cmd.ExecuteScalar().ToString();

toolStripLabel3.Text = s;



:)