Как отобразить запись из SQL в текстовое поле
Привет...
У меня есть таблица под названием " ItemsPricesTbl"
Содержать :
ItemID FirstUnitWholeSalePrice FirstUnitShopperPrice FirstUnitDemotionsPrice FirstUnitPriceDefult SecondUnitWholeSalePrice SecondUnitShopperPrice SecondUnitDemotionsPrice SecondUnitPriceDefult ThirdUnitWholeSalePrice ThirdUnitShopperPrice ThirdUnitDemotionsPrice ThirdUnitPriceDefult DefultPrice
Сохраненный Porc-это :
ALTER PROCEDURE [dbo].[Get_Prices_Item_By_ID] @ItemID int as begin Select ItemID,FirstUnitWholeSalePrice,FirstUnitShopperPrice,FirstUnitDemotionsPrice,FirstUnitPriceDefult,SecondUnitWholeSalePrice,SecondUnitShopperPrice,SecondUnitDemotionsPrice,SecondUnitPriceDefult,ThirdUnitWholeSalePrice,ThirdUnitShopperPrice,ThirdUnitDemotionsPrice,ThirdUnitPriceDefult,DefultPrice from ItemsPricesTbl Where ItemID=@ItemID End
в Vb у меня есть класс DatabaseManager, который имеет этот код :
Private Function exeReader(ByRef cmd As SqlCommand, ByRef dr As SqlDataReader) As Integer Dim retval As Integer = -1 cmd.Connection = Me.Connection Try If cmd.CommandType = CommandType.StoredProcedure Then Dim pr As New SqlParameter("@retval", SqlDbType.Int) pr.Direction = ParameterDirection.ReturnValue cmd.Parameters.Add(pr) End If If cmd.Connection.State = ConnectionState.Closed Then cmd.Connection.Open() dr = cmd.ExecuteReader() If cmd.CommandType = CommandType.StoredProcedure Then retval = cmd.Parameters("@retval").Value Catch ex As Exception Throw New Exception(ex.Message) Finally Me.close() End Try Return retval End Function
Кроме того, у меня есть два класса-класс данных и бизнес-класс .
Код Класса Данных :
Friend Function Get_Prices_Item_By_ID(ByRef cmd As SqlCommand, ByRef dr As SqlDataReader, ByVal ItemID As Integer) As Integer Dim retval As String cmd = New SqlCommand("Get_Prices_Item_By_ID") daa.SelectCommand.Parameters.AddWithValue("@FirstUnitWholeSalePrice", SqlDbType.Decimal) daa.SelectCommand.Parameters.AddWithValue("@FirstUnitShopperPrice", SqlDbType.Decimal) daa.SelectCommand.Parameters.AddWithValue("@FirstUnitDemotionsPrice", SqlDbType.Decimal) daa.SelectCommand.Parameters.AddWithValue("@FirstUnitPriceDefult", SqlDbType.Bit) daa.SelectCommand.Parameters.AddWithValue("@SecondUnitWholeSalePrice", SqlDbType.Decimal) daa.SelectCommand.Parameters.AddWithValue("@SecondUnitShopperPrice", SqlDbType.Decimal) daa.SelectCommand.Parameters.AddWithValue("@SecondUnitDemotionsPrice", SqlDbType.Decimal) daa.SelectCommand.Parameters.AddWithValue("@SecondUnitPriceDefult", SqlDbType.Bit) daa.SelectCommand.Parameters.AddWithValue("@ThirdUnitWholeSalePrice", SqlDbType.Decimal) daa.SelectCommand.Parameters.AddWithValue("@ThirdUnitShopperPrice", SqlDbType.Decimal) daa.SelectCommand.Parameters.AddWithValue("@ThirdUnitDemotionsPrice", SqlDbType.Decimal) daa.SelectCommand.Parameters.AddWithValue("@ThirdUnitPriceDefult", SqlDbType.Bit) daa.SelectCommand.Parameters.AddWithValue("@DefultPrice", SqlDbType.Int) dr = cmd.ExecuteReader() Return retval End Function
И Код Бизнес-Класса :
Public Function Get_Prices_Item_By_ID(ByVal ItemID As Integer) As DataTable Dim dt As New DataTable p.Get_Prices_Item_By_ID(dt) Return dt End Function
Какой код я должен ввести в кнопку поиска ?
How To Display Record From SQL To TextBox
Что я уже пробовал:
The Stored Porc is : <pre lang="SQL">ALTER PROCEDURE [dbo].[Get_Prices_Item_By_ID] @ItemID int as begin Select ItemID,FirstUnitWholeSalePrice,FirstUnitShopperPrice,FirstUnitDemotionsPrice,FirstUnitPriceDefult,SecondUnitWholeSalePrice,SecondUnitShopperPrice,SecondUnitDemotionsPrice,SecondUnitPriceDefult,ThirdUnitWholeSalePrice,ThirdUnitShopperPrice,ThirdUnitDemotionsPrice,ThirdUnitPriceDefult,DefultPrice from ItemsPricesTbl Where ItemID=@ItemID End
в Vb у меня есть класс DatabaseManager, который имеет этот код :
Private Function exeReader(ByRef cmd As SqlCommand, ByRef dr As SqlDataReader) As Integer Dim retval As Integer = -1 cmd.Connection = Me.Connection Try If cmd.CommandType = CommandType.StoredProcedure Then Dim pr As New SqlParameter("@retval", SqlDbType.Int) pr.Direction = ParameterDirection.ReturnValue cmd.Parameters.Add(pr) End If If cmd.Connection.State = ConnectionState.Closed Then cmd.Connection.Open() dr = cmd.ExecuteReader() If cmd.CommandType = CommandType.StoredProcedure Then retval = cmd.Parameters("@retval").Value Catch ex As Exception Throw New Exception(ex.Message) Finally Me.close() End Try Return retval End Function
Кроме того, у меня есть два класса-класс данных и бизнес-класс .
Код Класса Данных :
Friend Function Get_Prices_Item_By_ID(ByRef cmd As SqlCommand, ByRef dr As SqlDataReader, ByVal ItemID As Integer) As Integer Dim retval As String cmd = New SqlCommand("Get_Prices_Item_By_ID") daa.SelectCommand.Parameters.AddWithValue("@FirstUnitWholeSalePrice", SqlDbType.Decimal) daa.SelectCommand.Parameters.AddWithValue("@FirstUnitShopperPrice", SqlDbType.Decimal) daa.SelectCommand.Parameters.AddWithValue("@FirstUnitDemotionsPrice", SqlDbType.Decimal) daa.SelectCommand.Parameters.AddWithValue("@FirstUnitPriceDefult", SqlDbType.Bit) daa.SelectCommand.Parameters.AddWithValue("@SecondUnitWholeSalePrice", SqlDbType.Decimal) daa.SelectCommand.Parameters.AddWithValue("@SecondUnitShopperPrice", SqlDbType.Decimal) daa.SelectCommand.Parameters.AddWithValue("@SecondUnitDemotionsPrice", SqlDbType.Decimal) daa.SelectCommand.Parameters.AddWithValue("@SecondUnitPriceDefult", SqlDbType.Bit) daa.SelectCommand.Parameters.AddWithValue("@ThirdUnitWholeSalePrice", SqlDbType.Decimal) daa.SelectCommand.Parameters.AddWithValue("@ThirdUnitShopperPrice", SqlDbType.Decimal) daa.SelectCommand.Parameters.AddWithValue("@ThirdUnitDemotionsPrice", SqlDbType.Decimal) daa.SelectCommand.Parameters.AddWithValue("@ThirdUnitPriceDefult", SqlDbType.Bit) daa.SelectCommand.Parameters.AddWithValue("@DefultPrice", SqlDbType.Int) dr = cmd.ExecuteReader() Return retval End Function
И Код Бизнес-Класса :
Public Function Get_Prices_Item_By_ID(ByVal ItemID As Integer) As DataTable Dim dt As New DataTable p.Get_Prices_Item_By_ID(dt) Return dt End Function
Richard MacCutchan
Почему вы разместили весь этот код дважды: одного раза более чем достаточно? Кроме того, описание вашей проблемы далеко не ясно. Отображение данных в текстовом поле - это просто захват данных, форматирование их в соответствии с вашей спецификацией и установка их в текстовое свойство текстового поля.