<?xml version="1.0" encoding="iso-8859-9" ?>
<?xml-stylesheet type="text/xsl" href="RSS_xslt_style.asp" version="1.0" ?>
<rss version="2.0" xmlns:WebWizForums="https://syndication.webwiz.net/rss_namespace/">
 <channel>
  <title>Clomosy | Forum : Tür Dönüşüm Hatası</title>
  <link>https://forum.clomosy.com.tr/</link>
  <description><![CDATA[XML içerik linki; Clomosy | Forum : Genel &#304;&#351;lemler : Tür Dönüşüm Hatası]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Mon, 04 May 2026 11:25:31 +0000</pubDate>
  <lastBuildDate>Wed, 30 Jul 2025 17:44:54 +0000</lastBuildDate>
  <docs>http://blogs.law.harvard.edu/tech/rss</docs>
  <generator>Web Wiz Forums 12.07</generator>
  <ttl>360</ttl>
  <WebWizForums:feedURL>https://forum.clomosy.com.tr/RSS_post_feed.asp?TID=1146</WebWizForums:feedURL>
  <image>
   <title><![CDATA[Clomosy | Forum]]></title>
   <url>https://forum.clomosy.com.tr/forum_images/logo.png</url>
   <link>https://forum.clomosy.com.tr/</link>
  </image>
  <item>
   <title><![CDATA[Tür Dönüşüm Hatası : Merhaba Celal,Koda g&#246;z gezdirdi&#287;imde...]]></title>
   <link>https://forum.clomosy.com.tr/forum_posts.asp?TID=1146&amp;PID=2418#2418</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="https://forum.clomosy.com.tr/member_profile.asp?PF=142">BilalCndn</a><br /><strong>Konu:</strong> 1146<br /><strong>Gönderim Zamanı:</strong> 30&nbsp;Temmuz&nbsp;2025 Saat 17:44<br /><br />Merhaba Celal,<div><br></div><div>Koda göz gezdirdiğimde try-except kullanımında parantez hataları görüyorum. Bu parantez hataları kodun tespit edilmesi zor hatalar vermesine sebep olabilir. Parantezleri dikkatlice düzenleyip tekrar dener misin?</div><div><br></div><div>Örnek try-except kullanımı</div><div><table width="99%"><tr><td><pre class="BBcode"></div><div>try</div><div>//çalışacak olan kodlar...</div><div>except</div><div>//hata alındığında çalışacak kodlar</div><div>}</div><div></pre></td></tr></table></div><div><br></div><div>İyi çalışmalar dilerim.</div>]]>
   </description>
   <pubDate>Wed, 30 Jul 2025 17:44:54 +0000</pubDate>
   <guid isPermaLink="true">https://forum.clomosy.com.tr/forum_posts.asp?TID=1146&amp;PID=2418#2418</guid>
  </item> 
  <item>
   <title><![CDATA[Tür Dönüşüm Hatası : Merhabalar buras&#305; benim uUretim...]]></title>
   <link>https://forum.clomosy.com.tr/forum_posts.asp?TID=1146&amp;PID=2390#2390</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="https://forum.clomosy.com.tr/member_profile.asp?PF=324">CelalTugay</a><br /><strong>Konu:</strong> 1146<br /><strong>Gönderim Zamanı:</strong> 28&nbsp;Temmuz&nbsp;2025 Saat 14:56<br /><br /><div>Merhabalar burası benim uUretim unitim burayı açınca verileri ekle butonuna basınca could not convert variant of type (UnicodeString) into type (Boolean) hatası alıyorum aşşağıda uUretim unitim var&nbsp;<br>var</div><div>&nbsp; UretimForm: TclForm;</div><div>&nbsp; edtSulama, edtSicaklik, edtNem, edtIlaclama, edtHasatPlan, edtGunlukIs: TclProEdit;</div><div>&nbsp; btnEkle, btnGuncelle, btnGeri: TclProButton;</div><div>&nbsp; gridUretim: TclProGrid;</div><div>&nbsp; Sorgu: TclSQLiteQuery;</div><div>&nbsp; SecilenSatirID: Integer; // Düzenleme için seçilen kayıt ID'si</div><div>&nbsp; dbPath: String;</div><div>// Veritabanı bağlantı yolu</div><div>//const</div><div>&nbsp;</div><div><br></div><div>// Verileri veritabanından al ve gridde göster</div><div>void VerileriYukle</div><div>var</div><div>&nbsp; yeniSatir: Integer;</div><div>&nbsp; Sorgu: TclSQLiteQuery;</div><div>{</div><div>&nbsp; try {</div><div>&nbsp; &nbsp; Clomosy.DBSQLiteConnect(dbPath, '');</div><div><br></div><div>&nbsp; &nbsp; Sorgu = Clomosy.DBSQLiteQueryWith('SELECT UretimID, Sulama, Sicaklik, Nem, Ilaclama, Hasat_Plan, Gunluk_Is FROM ÜretimTablosu ORDER BY UretimID DESC');</div><div>&nbsp; &nbsp; Sorgu.OpenOrExecute;</div><div><br></div><div>&nbsp; &nbsp; gridUretim.RowCount = 1; // sadece başlık</div><div><br></div><div>&nbsp; &nbsp; while (not Sorgu.Eof) {</div><div>&nbsp; &nbsp; &nbsp; yeniSatir = gridUretim.RowCount;</div><div>&nbsp; &nbsp; &nbsp; gridUretim.RowCount = yeniSatir + 1;</div><div><br></div><div>&nbsp; &nbsp; &nbsp; gridUretim.Cells&#091;0, yeniSatir&#093; = Sorgu.FieldByName('UretimID').AsString;</div><div>&nbsp; &nbsp; &nbsp; gridUretim.Cells&#091;1, yeniSatir&#093; = Sorgu.FieldByName('Sulama').AsString;</div><div>&nbsp; &nbsp; &nbsp; gridUretim.Cells&#091;2, yeniSatir&#093; = Sorgu.FieldByName('Sicaklik').AsString;</div><div>&nbsp; &nbsp; &nbsp; gridUretim.Cells&#091;3, yeniSatir&#093; = Sorgu.FieldByName('Nem').AsString;</div><div>&nbsp; &nbsp; &nbsp; gridUretim.Cells&#091;4, yeniSatir&#093; = Sorgu.FieldByName('Ilaclama').AsString;</div><div>&nbsp; &nbsp; &nbsp; gridUretim.Cells&#091;5, yeniSatir&#093; = Sorgu.FieldByName('Hasat_Plan').AsString;</div><div>&nbsp; &nbsp; &nbsp; gridUretim.Cells&#091;6, yeniSatir&#093; = Sorgu.FieldByName('Gunluk_Is').AsString;</div><div><br></div><div>&nbsp; &nbsp; &nbsp;&nbsp;</div><div>&nbsp; &nbsp; &nbsp;&nbsp;</div><div>&nbsp; &nbsp; &nbsp; edtSulama.Text = '';</div><div>&nbsp; &nbsp; &nbsp; edtSicaklik.Text = '';</div><div>&nbsp; &nbsp; &nbsp; edtNem.Text = '';</div><div>&nbsp; &nbsp; &nbsp; edtIlaclama.Text = '';</div><div>&nbsp; &nbsp; &nbsp; edtHasatPlan.Text = '';</div><div>&nbsp; &nbsp; &nbsp; edtGunlukIs.Text = '';</div><div>&nbsp; &nbsp; &nbsp; SecilenSatirID = 0;</div><div><br></div><div>&nbsp; &nbsp; &nbsp; Sorgu.Next;</div><div>&nbsp; &nbsp; }</div><div>&nbsp; }</div><div>&nbsp; except {</div><div>&nbsp; &nbsp; ShowMessage('Veriler yüklenirken hata: ' + LastExceptionMessage);</div><div>&nbsp; }</div><div>}</div><div>}</div><div><br></div><div><br></div><div><br></div><div><br></div><div>// Gridde satır seçildiğinde verileri düzenleme alanlarına getir</div><div>void GridSatirSecildi;</div><div>var&nbsp;</div><div>&nbsp; secilenSatir: Integer; // Integer olarak tanımla</div><div>{</div><div>&nbsp; secilenSatir = UretimForm.ClSenderRow; // Değer ata</div><div>&nbsp;&nbsp;</div><div>&nbsp; if (secilenSatir &lt;= 0) Exit; // Şimdi integer karşılaştırması</div><div><br></div><div>&nbsp; SecilenSatirID = StrToInt(gridUretim.Cells&#091;0, secilenSatir&#093;);</div><div>&nbsp; edtSulama.Text = gridUretim.Cells&#091;1, secilenSatir&#093;;</div><div>&nbsp; edtSicaklik.Text = gridUretim.Cells&#091;2, secilenSatir&#093;;</div><div>&nbsp; edtNem.Text = gridUretim.Cells&#091;3, secilenSatir&#093;;</div><div>&nbsp; edtIlaclama.Text = gridUretim.Cells&#091;4, secilenSatir&#093;;</div><div>&nbsp; edtHasatPlan.Text = gridUretim.Cells&#091;5, secilenSatir&#093;;</div><div>&nbsp; edtGunlukIs.Text = gridUretim.Cells&#091;6, secilenSatir&#093;;</div><div><br></div><div>&nbsp; btnEkle.Visible = False;</div><div>&nbsp; btnGuncelle.Visible = True;</div><div>}</div><div><br></div><div><br></div><div>// Güncelle butonu tıklaması</div><div>void btnEkleTikla;</div><div>{</div><div>&nbsp; if (edtSulama.Text == '' || edtSicaklik.Text == '' || edtNem.Text == '' ||</div><div>&nbsp; &nbsp; &nbsp; edtIlaclama.Text == '' || edtHasatPlan.Text == '' || edtGunlukIs.Text == '') {</div><div>&nbsp; &nbsp; ShowMessage('Lütfen tüm alanları doldurun!');</div><div>&nbsp; &nbsp; Exit;</div><div>&nbsp; }</div><div><br></div><div>&nbsp; try</div><div>&nbsp; &nbsp; Clomosy.DBSQLiteConnect(dbPath, '');</div><div>&nbsp; &nbsp;&nbsp;</div><div>&nbsp; &nbsp; // STRING olarak kaydet (StrToInt çevirimi kaldırıldı)</div><div>&nbsp; &nbsp; Clomosy.DBSQLiteQuery.SQL.Text =&nbsp;</div><div>&nbsp; &nbsp; &nbsp; 'INSERT INTO ÜretimTablosu (Sulama, Sicaklik, Nem, Ilaclama, Hasat_Plan, Gunluk_Is) VALUES (' +</div><div>&nbsp; &nbsp; &nbsp; QuotedStr(Trim(edtSulama.Text)) + ', ' +</div><div>&nbsp; &nbsp; &nbsp; QuotedStr(Trim(edtSicaklik.Text)) + ', ' +</div><div>&nbsp; &nbsp; &nbsp; QuotedStr(Trim(edtNem.Text)) + ', ' +</div><div>&nbsp; &nbsp; &nbsp; QuotedStr(Trim(edtIlaclama.Text)) + ', ' +</div><div>&nbsp; &nbsp; &nbsp; QuotedStr(Trim(edtHasatPlan.Text)) + ', ' +</div><div>&nbsp; &nbsp; &nbsp; QuotedStr(Trim(edtGunlukIs.Text)) + ')';</div><div><br></div><div>&nbsp; &nbsp; Clomosy.DBSQLiteQuery.OpenOrExecute; // OpenOrExecute yerine OpenOrExecute</div><div><br></div><div>&nbsp; &nbsp; ShowMessage('Veri başarıyla eklendi!');</div><div>&nbsp; &nbsp; VerileriYukle; // Grid'i yenile</div><div>&nbsp; &nbsp;&nbsp;</div><div>&nbsp; except</div><div>&nbsp; &nbsp; ShowMessage('Veri eklenirken hata: ' + LastExceptionMessage);</div><div>&nbsp; }</div><div>}</div><div><br></div><div><br></div><div>/*void btnGuncelleTikla;</div><div>{</div><div>&nbsp; if (SecilenSatirID &lt;= 0) {</div><div>&nbsp; &nbsp; ShowMessage('Lütfen güncellenecek kaydı seçin!');</div><div>&nbsp; &nbsp; Exit;</div><div>&nbsp; }</div><div><br></div><div>&nbsp; if (edtSulama.Text == '' || edtSicaklik.Text == '' || edtNem.Text == '' ||</div><div>&nbsp; &nbsp; &nbsp; edtIlaclama.Text == '' || edtHasatPlan.Text == '' || edtGunlukIs.Text == '') {</div><div>&nbsp; &nbsp; ShowMessage('Lütfen tüm alanları doldurun!');</div><div>&nbsp; &nbsp; Exit;</div><div>&nbsp; }</div><div><br></div><div>&nbsp; try</div><div>&nbsp; &nbsp; Clomosy.DBSQLiteConnect(dbPath, '');</div><div>&nbsp; &nbsp;&nbsp;</div><div>&nbsp; &nbsp; Clomosy.DBSQLiteQuery.SQL.Text =&nbsp;</div><div>&nbsp; &nbsp; &nbsp; 'UPDATE ÜretimTablosu SET ' +</div><div>&nbsp; &nbsp; &nbsp; 'Sulama = ' + QuotedStr(Trim(edtSulama.Text)) + ', ' +</div><div>&nbsp; &nbsp; &nbsp; 'Sicaklik = ' + QuotedStr(Trim(edtSicaklik.Text)) + ', ' +</div><div>&nbsp; &nbsp; &nbsp; 'Nem = ' + QuotedStr(Trim(edtNem.Text)) + ', ' +</div><div>&nbsp; &nbsp; &nbsp; 'Ilaclama = ' + QuotedStr(Trim(edtIlaclama.Text)) + ', ' +</div><div>&nbsp; &nbsp; &nbsp; 'Hasat_Plan = ' + QuotedStr(Trim(edtHasatPlan.Text)) + ', ' +</div><div>&nbsp; &nbsp; &nbsp; 'Gunluk_Is = ' + QuotedStr(Trim(edtGunlukIs.Text)) + ' ' +</div><div>&nbsp; &nbsp; &nbsp; 'WHERE ID = ' + IntToStr(SecilenSatirID);</div><div><br></div><div>&nbsp; &nbsp; Clomosy.DBSQLiteQuery.OpenOrExecute;</div><div><br></div><div>&nbsp; &nbsp; ShowMessage('Veri başarıyla güncellendi!');</div><div>&nbsp; &nbsp; VerileriYukle; // Grid'i yenile</div><div>&nbsp; &nbsp;&nbsp;</div><div>&nbsp; except</div><div>&nbsp; &nbsp; ShowMessage('Veri güncellenirken hata: ' + LastExceptionMessage);</div><div>&nbsp; }</div><div>}*/</div><div><br></div><div><br></div><div>// Geri butonu tıklaması</div><div>void btnGeriTikla {</div><div>&nbsp; UretimForm.Close;</div><div>}</div><div><br></div><div>{</div><div>&nbsp; UretimForm = TclForm.Create(Self);</div><div>&nbsp; SecilenSatirID = 0;</div><div>&nbsp; dbPath = Clomosy.AppFilesPath + 'MantarLAR.db';</div><div><br></div><div>&nbsp; UretimForm.SetFormBGImage('<a href="https://resmim.net/cdn/2025/07/18/Xm5rHT.jpg" target="_blank" rel="nofollow">https://resmim.net/cdn/2025/07/18/Xm5rHT.jpg</a>');</div><div><br></div><div>&nbsp; edtSulama = UretimForm.AddNewProEdit(UretimForm, 'edtSulama', 'Sulama');</div><div>&nbsp; edtSulama.Align = alTop;</div><div>&nbsp; edtSulama.Height = 50;</div><div>&nbsp; edtSulama.Margins.Top = 10;</div><div>&nbsp; edtSulama.Margins.Left = 30;</div><div>&nbsp; edtSulama.Margins.Right = 30;</div><div>&nbsp; edtSulama.clProSettings.IsRound = True;</div><div>&nbsp; edtSulama.SetclProSettings(edtSulama.clProSettings);</div><div><br></div><div>&nbsp; edtSicaklik = UretimForm.AddNewProEdit(UretimForm, 'edtSicaklik', 'Sıcaklık');</div><div>&nbsp; edtSicaklik.Align = alTop;</div><div>&nbsp; edtSicaklik.Height = 50;</div><div>&nbsp; edtSicaklik.Margins.Top = 10;</div><div>&nbsp; edtSicaklik.Margins.Left = 30;</div><div>&nbsp; edtSicaklik.Margins.Right = 30;</div><div>&nbsp; edtSicaklik.clProSettings.IsRound = True;</div><div>&nbsp; edtSicaklik.SetclProSettings(edtSicaklik.clProSettings);</div><div><br></div><div>&nbsp; edtNem = UretimForm.AddNewProEdit(UretimForm, 'edtNem', 'Nem');</div><div>&nbsp; edtNem.Align = alTop;</div><div>&nbsp; edtNem.Height = 50;</div><div>&nbsp; edtNem.Margins.Top = 10;</div><div>&nbsp; edtNem.Margins.Left = 30;</div><div>&nbsp; edtNem.Margins.Right = 30;</div><div>&nbsp; edtNem.clProSettings.IsRound = True;</div><div>&nbsp; edtNem.SetclProSettings(edtNem.clProSettings);</div><div><br></div><div>&nbsp; edtIlaclama = UretimForm.AddNewProEdit(UretimForm, 'edtIlaclama', 'İlaçlama');</div><div>&nbsp; edtIlaclama.Align = alTop;</div><div>&nbsp; edtIlaclama.Height = 50;</div><div>&nbsp; edtIlaclama.Margins.Top = 10;</div><div>&nbsp; edtIlaclama.Margins.Left = 30;</div><div>&nbsp; edtIlaclama.Margins.Right = 30;</div><div>&nbsp; edtIlaclama.clProSettings.IsRound = True;</div><div>&nbsp; edtIlaclama.SetclProSettings(edtIlaclama.clProSettings);</div><div><br></div><div>&nbsp; edtHasatPlan = UretimForm.AddNewProEdit(UretimForm, 'edtHasatPlan', 'Hasat Planı');</div><div>&nbsp; edtHasatPlan.Align = alTop;</div><div>&nbsp; edtHasatPlan.Height = 50;</div><div>&nbsp; edtHasatPlan.Margins.Top = 10;</div><div>&nbsp; edtHasatPlan.Margins.Left = 30;</div><div>&nbsp; edtHasatPlan.Margins.Right = 30;</div><div>&nbsp; edtHasatPlan.clProSettings.IsRound = True;</div><div>&nbsp; edtHasatPlan.SetclProSettings(edtHasatPlan.clProSettings);</div><div><br></div><div>&nbsp; edtGunlukIs = UretimForm.AddNewProEdit(UretimForm, 'edtGunlukIs', 'Günlük İş');</div><div>&nbsp; edtGunlukIs.Align = alTop;</div><div>&nbsp; edtGunlukIs.Height = 50;</div><div>&nbsp; edtGunlukIs.Margins.Top = 10;</div><div>&nbsp; edtGunlukIs.Margins.Left = 30;</div><div>&nbsp; edtGunlukIs.Margins.Right = 30;</div><div>&nbsp; edtGunlukIs.clProSettings.IsRound = True;</div><div>&nbsp; edtGunlukIs.SetclProSettings(edtGunlukIs.clProSettings);</div><div><br></div><div>&nbsp; btnEkle = UretimForm.AddNewProButton(UretimForm, 'btnEkle', 'Ekle');</div><div>&nbsp; btnEkle.Align = alTop;</div><div>&nbsp; btnEkle.Height = 45;</div><div>&nbsp; btnEkle.Margins.Top = 20;</div><div>&nbsp; btnEkle.Margins.Left = 80;</div><div>&nbsp; btnEkle.Margins.Right = 80;</div><div>&nbsp; btnEkle.clProSettings.IsRound = True;</div><div>&nbsp; btnEkle.clProSettings.BackgroundColor = clAlphaColor.clHexToColor('#ff894f');</div><div>&nbsp; btnEkle.clProSettings.FontColor = clAlphaColor.clHexToColor('#ffffff');</div><div>&nbsp; btnEkle.SetclProSettings(btnEkle.clProSettings);</div><div>&nbsp; UretimForm.AddNewEvent(btnEkle, tbeOnClick, 'btnEkleTikla');</div><div><br></div><div>&nbsp; /*btnGuncelle = UretimForm.AddNewProButton(UretimForm, 'btnGuncelle', 'Güncelle');</div><div>&nbsp; btnGuncelle.Align = alTop;</div><div>&nbsp; btnGuncelle.Height = 45;</div><div>&nbsp; btnGuncelle.Margins.Top = 10;</div><div>&nbsp; btnGuncelle.Margins.Left = 80;</div><div>&nbsp; btnGuncelle.Margins.Right = 80;</div><div>&nbsp; btnGuncelle.clProSettings.IsRound = True;</div><div>&nbsp; btnGuncelle.clProSettings.BackgroundColor = clAlphaColor.clHexToColor('#3b8b2e');</div><div>&nbsp; btnGuncelle.clProSettings.FontColor = clAlphaColor.clHexToColor('#ffffff');</div><div>&nbsp; btnGuncelle.SetclProSettings(btnGuncelle.clProSettings);</div><div>&nbsp; UretimForm.AddNewEvent(btnGuncelle, tbeOnClick, 'btnGuncelleTikla');</div><div>&nbsp; btnGuncelle.Visible = False;*/</div><div><br></div><div>&nbsp; btnGeri = UretimForm.AddNewProButton(UretimForm, 'btnGeri', 'Geri');</div><div>&nbsp; btnGeri.Align = alBottom;</div><div>&nbsp; btnGeri.Height = 50;</div><div>&nbsp; btnGeri.Margins.Bottom = 20;</div><div>&nbsp; btnGeri.Margins.Left = 80;</div><div>&nbsp; btnGeri.Margins.Right = 80;</div><div>&nbsp; btnGeri.clProSettings.IsRound = True;</div><div>&nbsp; btnGeri.clProSettings.BackgroundColor = clAlphaColor.clHexToColor('#ea5b6f');</div><div>&nbsp; btnGeri.clProSettings.FontColor = clAlphaColor.clHexToColor('#ffffff');</div><div>&nbsp; btnGeri.SetclProSettings(btnGeri.clProSettings);</div><div>&nbsp; UretimForm.AddNewEvent(btnGeri, tbeOnClick, 'btnGeriTikla');</div><div><br></div><div>&nbsp; gridUretim = UretimForm.AddNewProGrid(UretimForm, 'gridUretim');</div><div>&nbsp; gridUretim.Align = alClient;</div><div>&nbsp; gridUretim.Margins.Top = 20;</div><div>&nbsp; gridUretim.FixedRows = 1;</div><div>&nbsp; gridUretim.ColumnCount = 8; // Kolon sayısını belirt</div><div>&nbsp; gridUretim.RowCount = 1;</div><div>&nbsp; gridUretim.Cells&#091;0, 0&#093; = 'ID';</div><div>&nbsp; gridUretim.Cells&#091;1, 0&#093; = 'Sulama';</div><div>&nbsp; gridUretim.Cells&#091;2, 0&#093; = 'Sıcaklık';</div><div>&nbsp; gridUretim.Cells&#091;3, 0&#093; = 'Nem';</div><div>&nbsp; gridUretim.Cells&#091;4, 0&#093; = 'İlaçlama';</div><div>&nbsp; gridUretim.Cells&#091;5, 0&#093; = 'Hasat Planı';</div><div>&nbsp; gridUretim.Cells&#091;6, 0&#093; = 'Günlük İş';</div><div>&nbsp;&nbsp;</div><div><br></div><div>&nbsp; UretimForm.AddNewEvent(gridUretim, tbeOnProGridCellClick, 'GridSatirSecildi');</div><div><br></div><div><br></div><div>&nbsp;&nbsp;</div><div>&nbsp; VerileriYukle; // Verileri yükle</div><div>&nbsp; UretimForm.Run;</div><div><br></div><div>}<br><br><br>Aşşağıda da create tablom var&nbsp;<br><br><div>&nbsp; &nbsp; Clomosy.DBSQLiteQuery.SQL.Clear;</div><div>&nbsp; &nbsp; Clomosy.DBSQLiteQuery.SQL.Add(</div><div>&nbsp; &nbsp; &nbsp; 'CREATE TABLE IF NOT EXISTS ÜretimTablosu (' +</div><div>&nbsp; &nbsp; &nbsp; 'UretimID INTEGER PRIMARY KEY AUTOINCREMENT, ' +</div><div>&nbsp; &nbsp; &nbsp; 'Sulama TEXT NOT NULL, ' +</div><div>&nbsp; &nbsp; &nbsp; 'Sicaklik TEXT NOT NULL, ' +</div><div>&nbsp; &nbsp; &nbsp; 'Nem TEXT NOT NULL, ' +</div><div>&nbsp; &nbsp; &nbsp; 'Ilaclama TEXT NOT NULL, ' +</div><div>&nbsp; &nbsp; &nbsp; 'Hasat_Plan TEXT NOT NULL, ' +</div><div>&nbsp; &nbsp; &nbsp; 'Gunluk_Is TEXT NOT NULL' +&nbsp; // Sonda virgül yok!</div><div>&nbsp; &nbsp; &nbsp; ')');</div><div>&nbsp; &nbsp; Clomosy.DBSQLiteQuery.OpenOrExecute;</div><br><br>iyi çalışmalar.<br><br></div><div><br></div>]]>
   </description>
   <pubDate>Mon, 28 Jul 2025 14:56:10 +0000</pubDate>
   <guid isPermaLink="true">https://forum.clomosy.com.tr/forum_posts.asp?TID=1146&amp;PID=2390#2390</guid>
  </item> 
 </channel>
</rss>