Bir konuda destek ihtiyacaım doğdu.
Access veritabanındaki bir dosyadan kısa sorgu ile veri çekmek istiyorum.
Kod:
Me.txtVeri1.Value = baglan.Execute("select [Komisyon] from [PazarYeriAyar] where KategoriID =" & ID & " and [PazarYeriID]=1")
Me.txtVeri1.Value = baglan.Execute("select [Komisyon] from [PazarYeriAyar] where KategoriID =" & ID & " and [PazarYeriID]=1")
Me.txtVeri1.Value = rst.GetString(adClipString, , vbTab, vbCrLf)
(07/07/2022, 22:17)berduş yazdı: Recordset 'ten veriyi bu şekilde alamazsınız
Önce recordseti oluşturup sonra da getstring ile almayi dener misiniz?
Me.txtVeri1.Value = rst.GetString(adClipString, , vbTab, vbCrLf)
Me.txtVeri1.Value = baglan.Execute("select [Komisyon] from [PazarYeriAyar] where KategoriID =" & ID & " and [PazarYeriID]=1")
kodunu aşağıdaki kodla değiştirip dener misiniz?Me.txtVeri1.Value = baglan.Execute("select [Komisyon] from [PazarYeriAyar] where KategoriID =" & ID & " and [PazarYeriID]=1").GetString(, , vbTab, vbCrLf)