ボックスを自動入力するために、DB からテキスト ボックスに整数値 (vehicle_number) を受信しようとしています...どうすればよいですか? お願いします
using (OdbcConnection conexao = new OdbcConnection(con))
{
OdbcCommand commandResgVei = new OdbcCommand(textoResgataVeiculo, conexao);
conexao.Open();
OdbcDataReader result = commandResgVei.ExecuteReader();
resultado.Read();
vehicle_number.Text = ?????????????????????????? // how?
name.Text = result["name"] as string;
}