<?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 : SQLite Tablo Gözükmüyor</title>
  <link>https://forum.clomosy.com.tr/</link>
  <description><![CDATA[XML içerik linki; Clomosy | Forum : Genel &#304;&#351;lemler : SQLite Tablo Gözükmüyor]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Mon, 04 May 2026 12:40:24 +0000</pubDate>
  <lastBuildDate>Mon, 02 Sep 2024 11:07:12 +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=920</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[SQLite Tablo Gözükmüyor : Merhaba Zeynep,Clomosy i&#231;erisinde...]]></title>
   <link>https://forum.clomosy.com.tr/forum_posts.asp?TID=920&amp;PID=1776#1776</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="https://forum.clomosy.com.tr/member_profile.asp?PF=142">BilalCndn</a><br /><strong>Konu:</strong> 920<br /><strong>Gönderim Zamanı:</strong> 02&nbsp;Eylül&nbsp;2024 Saat 11:07<br /><br />Merhaba Zeynep,<div><br></div><div>Clomosy içerisinde Select sorgusu atarak tablodaki verileri çekebilirsin. Tabloyu, tablo yapısında görmek istiyorsan TclStringGrid veya TclProGrid kullanabilirsin. Tablonu görmene engel olan bir hata alırsan hata mesajını gönderirsen yardımcı olabilirim.</div><div><br></div><div>İyi çalışmalar dilerim.</div>]]>
   </description>
   <pubDate>Mon, 02 Sep 2024 11:07:12 +0000</pubDate>
   <guid isPermaLink="true">https://forum.clomosy.com.tr/forum_posts.asp?TID=920&amp;PID=1776#1776</guid>
  </item> 
  <item>
   <title><![CDATA[SQLite Tablo Gözükmüyor : yazd&#305;&#287;&#305;m programda veritaban&#305;na...]]></title>
   <link>https://forum.clomosy.com.tr/forum_posts.asp?TID=920&amp;PID=1766#1766</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="https://forum.clomosy.com.tr/member_profile.asp?PF=214">zeynepsimsek</a><br /><strong>Konu:</strong> 920<br /><strong>Gönderim Zamanı:</strong> 29&nbsp;Ağustos&nbsp;2024 Saat 16:04<br /><br />yazdığım programda veritabanına tablo eklendi mesajı alıyorum fakat sqlite uygulamasına girince tablo gözükmüyor&nbsp;<div><br></div><div><div>var</div><div>HastaForm : TclStyleForm;</div><div>HastaAdSoyadLbL,HastaTCLbl,HastaSifreLbl,PanelAdLbl,KayitLbl: TClProLabel;</div><div>HastaAdSoyadEdt,HastaTCEdt,HastaSifreEdt:TclProEdit;</div><div>GirisBtn,KayitBtn:TClProButton;</div><div>HastaGiris : TclUnit;</div><div>selectQuery:TClSQLiteQuery;</div><div>database, password : String;</div><div><br></div><div><br></div><div>void GoToHastaGiris;</div><div>{</div><div>&nbsp; HastaForm.clShow;</div><div>&nbsp; HastaGiris.UnitName = 'HastaGiris';</div><div>&nbsp; HastaGiris.CallerForm = HastaForm;</div><div>&nbsp; HastaGiris.Run;</div><div>&nbsp;&nbsp;</div><div>}</div><div><br></div><div>void InsertToDatabase;</div><div>{</div><div>&nbsp; try&nbsp;</div><div>&nbsp; &nbsp; Clomosy.DBSQLiteQuery.SQL.Text = 'INSERT INTO HastaKayit (HastaAdSoyad,HastaTC,HastaSifre) VALUES (</div><div>&nbsp; &nbsp;'+QuotedStr(HastaAdsoyadEdt.Text)+','+HastaTCEdt.Text+','+HastaSifreEdt.Text+')';</div><div>&nbsp; &nbsp; Clomosy.DBSQLiteQuery.OpenOrExecute;</div><div>&nbsp; &nbsp; ShowMessage('Veri Ekleme Başarılı.');</div><div>&nbsp; except</div><div>&nbsp; &nbsp; ShowMessage('Exception class: '+LastExceptionClassName+' Exception Message: ' +LastExceptionMessage);</div><div>&nbsp; }</div><div>}</div><div><br></div><div><br></div><div>{</div><div>&nbsp; HastaForm = TclStyleForm.Create(Self);</div><div>&nbsp; HastaForm.SetFormBGImage('<a href="https://img.freepik.com/free-vector/abstract-medical-wallpaper-template-design_53876-61805.jpg" target="_blank" rel="nofollow">https://img.freepik.com/free-vector/abstract-medical-wallpaper-template-design_53876-61805.jpg</a>');</div><div>&nbsp;&nbsp;</div><div>&nbsp; HastaGiris = TclUnit.Create;</div><div>&nbsp;&nbsp;</div><div>&nbsp; Clomosy.DBSQLiteConnect(Clomosy.AppFilesPath + 'HastaneSistemi.db3', '');</div><div>&nbsp;</div><div>&nbsp; database = Clomosy.AppFilesPath + 'HastaneSistemi.db3';</div><div>&nbsp; password = '';</div><div><br></div><div>&nbsp; PanelAdLbl=HastaForm.AddNewProLabel(HastaForm, 'PanelAdLbl', 'HASTA KAYIT İŞLEMİ');</div><div>&nbsp; clComponent.SetupComponent(PanelAdLbl,</div><div>&nbsp; '{"Align" : "Center",</div><div>&nbsp; "MarginBottom":535,</div><div>&nbsp; "MarginLeft":210,</div><div>&nbsp; "Width" :400,</div><div>&nbsp; "Height":30,</div><div>&nbsp; "TextColor":"#928d9a",</div><div>&nbsp; "TextSize":20,</div><div>&nbsp; "TextBold":"yes"}');</div><div>&nbsp;&nbsp;</div><div>&nbsp; HastaAdsoyadLbL=HastaForm.AddNewProLabel(HastaForm, 'HastaAdsoyadLbL', 'Adınız:');</div><div>&nbsp; clComponent.SetupComponent(HastaAdsoyadLbL,</div><div>&nbsp; '{"Align" : "Center",</div><div>&nbsp; "MarginBottom":420,</div><div>&nbsp; "MarginLeft":90,</div><div>&nbsp; "Width" :400,</div><div>&nbsp; "Height":30,</div><div>&nbsp; "TextColor":"#928d9a",</div><div>&nbsp; "TextSize":17,</div><div>&nbsp; "TextBold":"yes"}');</div><div>&nbsp;&nbsp;</div><div>&nbsp;&nbsp;</div><div>&nbsp; HastaTCLbl=HastaForm.AddNewProLabel(HastaForm, 'HastaTCLbl', 'Kimlik No:');</div><div>&nbsp; clComponent.SetupComponent(HastaTCLbl,</div><div>&nbsp; '{"Align" : "Center",</div><div>&nbsp; "MarginBottom":320,</div><div>&nbsp; "MarginLeft":90,</div><div>&nbsp; "Width" :400,</div><div>&nbsp; "Height":30,</div><div>&nbsp; "TextColor":"#928d9a",</div><div>&nbsp; "TextSize":17,</div><div>&nbsp; "TextBold":"yes"}');</div><div>&nbsp;&nbsp;</div><div>&nbsp; HastaSifreLbl=HastaForm.AddNewProLabel(HastaForm, 'HastaSifreLbl', 'Şifre:');</div><div>&nbsp; clComponent.SetupComponent(HastaSifreLbl,</div><div>&nbsp; '{"Align" : "Center",</div><div>&nbsp; "MarginBottom":220,</div><div>&nbsp; "MarginLeft":90,</div><div>&nbsp; "Width" :400,</div><div>&nbsp; "Height":30,</div><div>&nbsp; "TextColor":"#928d9a",</div><div>&nbsp; "TextSize":17,</div><div>&nbsp; "TextBold":"yes"}');</div><div>&nbsp;&nbsp;</div><div>&nbsp; KayitLbl=HastaForm.AddNewProLabel(HastaForm, 'KayitLbl', 'Hesabınız Var İse Giriş Yapın.');</div><div>&nbsp; clComponent.SetupComponent(KayitLbl,</div><div>&nbsp; '{"Align" : "Center",</div><div>&nbsp; "MarginTop":180,</div><div>&nbsp; "MarginLeft":160,</div><div>&nbsp; "Width" :400,</div><div>&nbsp; "Height":30,</div><div>&nbsp; "TextColor":"#928d9a",</div><div>&nbsp; "TextSize":17,</div><div>&nbsp; "TextBold":"yes"}');</div><div>&nbsp;&nbsp;</div><div>&nbsp;&nbsp;</div><div>&nbsp; GirisBtn = HastaForm.AddNewProButton(HastaForm,'GirisBtn','');</div><div>&nbsp; clComponent.SetupComponent(GirisBtn,</div><div>&nbsp; '{"caption":"Giriş Yap",</div><div>&nbsp; "Align" : "Center",</div><div>&nbsp; "MarginTop":260,</div><div>&nbsp; "Width" :80,</div><div>&nbsp; "Height":40,</div><div>&nbsp; "RoundHeight":2,</div><div>&nbsp; "RoundWidth":2,</div><div>&nbsp; "BorderColor":"#928d9a",</div><div>&nbsp; "BorderWidth":3}');</div><div>&nbsp;&nbsp;</div><div>&nbsp; KayitBtn = HastaForm.AddNewProButton(HastaForm,'KayitBtn','');</div><div>&nbsp; clComponent.SetupComponent(KayitBtn,</div><div>&nbsp; '{"caption":"Kaydol",</div><div>&nbsp; "Align" : "Center",</div><div>&nbsp; "MarginTop":10,</div><div>&nbsp; "Width" :80,</div><div>&nbsp; "Height":40,</div><div>&nbsp; "RoundHeight":2,</div><div>&nbsp; "RoundWidth":2,</div><div>&nbsp; "BorderColor":"#928d9a",</div><div>&nbsp; "BorderWidth":3}');</div><div>&nbsp;&nbsp;</div><div>&nbsp; HastaAdSoyadEdt=HastaForm.AddNewProEdit(HastaForm, 'HastaAdSoyadEdt', '');</div><div>&nbsp; clComponent.SetupComponent(HastaAdSoyadEdt,</div><div>&nbsp; '{"Align" : "Center",</div><div>&nbsp; "MarginBottom":420,</div><div>&nbsp; "MarginLeft":30,</div><div>&nbsp; "Width" :160,</div><div>&nbsp; "Height":30,</div><div>&nbsp; "RoundHeight":5,</div><div>&nbsp; "RoundWidth":5,</div><div>&nbsp; "BorderWidth":2,</div><div>&nbsp; "BorderColor":"#928d9a"</div><div>&nbsp; }');</div><div><br></div><div><br></div><div>&nbsp; HastaTCEdt=HastaForm.AddNewProEdit(HastaForm, 'HastaTCEdt', '');</div><div>&nbsp; clComponent.SetupComponent(HastaTCEdt,</div><div>&nbsp; '{"Align" : "Center",</div><div>&nbsp; "MarginBottom":320,</div><div>&nbsp; "MarginLeft":30,</div><div>&nbsp; "Width" :160,</div><div>&nbsp; "Height":30,</div><div>&nbsp; "RoundHeight":5,</div><div>&nbsp; "RoundWidth":5,</div><div>&nbsp; "BorderWidth":2,</div><div>&nbsp; "BorderColor":"#928d9a"</div><div>&nbsp; }');</div><div>&nbsp;&nbsp;</div><div>&nbsp;&nbsp;</div><div>&nbsp; HastaSifreEdt=HastaForm.AddNewProEdit(HastaForm, 'HastaSifreEdt', '');</div><div>&nbsp; clComponent.SetupComponent(HastaSifreEdt,</div><div>&nbsp; '{"Align" : "Center",</div><div>&nbsp; "MarginBottom":220,</div><div>&nbsp; "MarginLeft":30,</div><div>&nbsp; "Width" :160,</div><div>&nbsp; "Height":30,</div><div>&nbsp; "RoundHeight":5,</div><div>&nbsp; "RoundWidth":5,</div><div>&nbsp; "BorderWidth":2,</div><div>&nbsp; "BorderColor":"#928d9a"</div><div>&nbsp; }');</div><div>&nbsp;&nbsp;</div><div>&nbsp;&nbsp;</div><div>&nbsp;</div><div>&nbsp; <font color="#ff3333">try</font></div><div><font color="#ff3333">&nbsp; &nbsp; Clomosy.DBSQLiteConnect(database , password);</font></div><div><font color="#ff3333">&nbsp; &nbsp;&nbsp;</font></div><div><font color="#ff3333">&nbsp; &nbsp; Clomosy.DBSQLiteQuery.Sql.Text = 'CREATE TABLE HastaKayit(HastaAdSoyad Text, HastaTC INTEGER,&nbsp; HastaSifre INTEGER)';</font></div><div><font color="#ff3333">&nbsp; &nbsp; Clomosy.DBSQLiteQuery.OpenOrExecute;</font></div><div><font color="#ff3333">&nbsp; &nbsp;&nbsp;</font></div><div><font color="#ff3333">&nbsp; &nbsp; ShowMessage('Veri tabanına tablo ekleme işlemi başarılı!');</font></div><div><font color="#ff3333">&nbsp; except</font></div><div><font color="#ff3333">&nbsp; &nbsp; ShowMessage('Exception Class: '+LastExceptionClassName+' Exception Message: '+LastExceptionMessage);</font></div><div><font color="#ff3333">&nbsp; }</font></div><div><font color="#ff3333">&nbsp;&nbsp;</font></div><div>&nbsp;&nbsp;</div><div>&nbsp;&nbsp;</div><div>&nbsp; HastaForm.AddNewEvent(KayitBtn,tbeOnClick,'InsertToDatabase');</div><div>&nbsp; HastaForm.AddNewEvent(GirisBtn,tbeOnClick,'GoToHastaGiris');</div><div>&nbsp;&nbsp;</div><div>&nbsp;&nbsp;</div><div>&nbsp; HastaForm.Run;</div><div>}</div></div>]]>
   </description>
   <pubDate>Thu, 29 Aug 2024 16:04:55 +0000</pubDate>
   <guid isPermaLink="true">https://forum.clomosy.com.tr/forum_posts.asp?TID=920&amp;PID=1766#1766</guid>
  </item> 
 </channel>
</rss>