<?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 : DataBase</title>
  <link>https://forum.clomosy.com.tr/</link>
  <description><![CDATA[XML içerik linki; Clomosy | Forum : Genel &#304;&#351;lemler : DataBase]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Mon, 04 May 2026 12:58:57 +0000</pubDate>
  <lastBuildDate>Wed, 28 Aug 2024 10:32:45 +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=910</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[DataBase : Merhaba MustafaSqlite veritaban&#305;...]]></title>
   <link>https://forum.clomosy.com.tr/forum_posts.asp?TID=910&amp;PID=1749#1749</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="https://forum.clomosy.com.tr/member_profile.asp?PF=106">Developer</a><br /><strong>Konu:</strong> 910<br /><strong>Gönderim Zamanı:</strong> 28&nbsp;Ağustos&nbsp;2024 Saat 10:32<br /><br />Merhaba Mustafa&nbsp;<div>Sqlite veritabanı nerde oluşturulmuşsa orda kullanılabilir. Bilgisayarda var olan sqlite veritabanına telefondan erişemezsiniz. Telefonda da tekrar oluşturmanız gerekir.</div><div>Bu linki inceler misin:</div><div><a href="https://www.docs.clomosy.com/index.php/Local_Database_Queries" target="_blank" rel="nofollow">https://www.docs.clomosy.com/index.php/Local_Database_Queries</a></div><div><br></div>]]>
   </description>
   <pubDate>Wed, 28 Aug 2024 10:32:45 +0000</pubDate>
   <guid isPermaLink="true">https://forum.clomosy.com.tr/forum_posts.asp?TID=910&amp;PID=1749#1749</guid>
  </item> 
  <item>
   <title><![CDATA[DataBase : Veritaban&#305;n&#305; ba&#287;lamada sorun ya&#351;&#305;yorum.A&#351;&#351;a&#287;&#305;daki...]]></title>
   <link>https://forum.clomosy.com.tr/forum_posts.asp?TID=910&amp;PID=1748#1748</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="https://forum.clomosy.com.tr/member_profile.asp?PF=222">MustafaCetin</a><br /><strong>Konu:</strong> 910<br /><strong>Gönderim Zamanı:</strong> 27&nbsp;Ağustos&nbsp;2024 Saat 14:59<br /><br /><div>Veritabanını bağlamada sorun yaşıyorum.Aşşağıdaki gibi kod yazınca bilgisayar üzerinde veritabanına erişebiliyorum fakat telefonda kullanamıyorum. Telefondan erişebilmek için Clomosy.DBSQLiteConnect(Clomosy.AppFilesPath+'sqllite.db3','') komutunu kullanıyorum bu sefer bilgisayardanda erişemiyorum mobilden de.&nbsp;</div><div>void SqLiteInsertUser;</div><div>{</div><div>&nbsp; try</div><div>&nbsp; &nbsp; Clomosy.DBSQLiteConnect('C:\Users\cetin\OneDrive\Masaüstü\Temporary\CLOSTARTER\EC9B5F542AE\sqllite.db3', '');</div><div>&nbsp; &nbsp;</div><div>&nbsp; &nbsp; ShowMessage('Veritabanına bağlanıldı.');</div><div>&nbsp; &nbsp;</div><div>&nbsp; &nbsp; Clomosy.DBSQLiteQuery.Sql.Text =&nbsp;</div><div>&nbsp; &nbsp; 'SELECT * FROM Users WHERE user_name = ' + QuotedStr(nameK.Text) +&nbsp;</div><div>&nbsp; &nbsp; ' AND user_surname = ' + QuotedStr(surnameK.Text);</div><div>&nbsp; &nbsp; Clomosy.DBSQLiteQuery.OpenOrExecute;</div><div>&nbsp; &nbsp;&nbsp;</div><div>&nbsp; &nbsp; if not (Clomosy.DBSQLiteQuery.Found)</div><div>&nbsp; &nbsp; {</div><div>&nbsp; &nbsp; &nbsp; Clomosy.DBSQLiteQuery.Sql.Text =&nbsp;</div><div>&nbsp; &nbsp; &nbsp; 'INSERT INTO Users (user_name, user_surname, user_password) VALUES (' +</div><div>&nbsp; &nbsp; &nbsp; QuotedStr(nameK.Text) + ', ' + QuotedStr(surnameK.Text) + ', ' + QuotedStr(passwordK.Text) + ');';</div><div>&nbsp; &nbsp; &nbsp; Clomosy.DBSQLiteQuery.OpenOrExecute;</div><div>&nbsp; &nbsp; &nbsp; ShowMessage('Başarılı bir şekilde kayıt olundu!');</div><div>&nbsp; &nbsp; &nbsp;&nbsp;</div><div>&nbsp; &nbsp; &nbsp; kayitSayfa.clHide;&nbsp;&nbsp;</div><div>&nbsp; &nbsp; &nbsp;&nbsp;</div><div>&nbsp; &nbsp; &nbsp; GirisYap;&nbsp;&nbsp;</div><div>&nbsp; &nbsp; }</div><div>&nbsp; &nbsp; else</div><div>&nbsp; &nbsp; {</div><div>&nbsp; &nbsp; &nbsp; ShowMessage('Bu kullanıcı zaten mevcut.');</div><div>&nbsp; &nbsp; }</div><div>&nbsp; except</div><div>&nbsp; &nbsp; ShowMessage('Kayıt sırasında bir hata oluştu: ' + LastExceptionMessage);</div><div>}</div><div>}</div><div><br></div><div>void SqLiteConnectionCreateTable;</div><div>var</div><div>&nbsp; TableExists: Boolean;</div><div>{</div><div>&nbsp; try</div><div>&nbsp; &nbsp; Clomosy.DBSQLiteConnect('C:\Users\cetin\OneDrive\Masaüstü\Temporary\CLOSTARTER\EC9B5F542AE\sqllite.db3', '');</div><div><br></div><div>&nbsp; &nbsp; ShowMessage('Veritabanına bağlanıldı.');</div><div>&nbsp; &nbsp;</div><div>&nbsp; &nbsp; Clomosy.DBSQLiteQuery.Sql.Text = 'SELECT name FROM sqlite_master WHERE type="table" AND name="Users";';</div><div>&nbsp; &nbsp; Clomosy.DBSQLiteQuery.OpenOrExecute;</div><div>&nbsp; &nbsp;&nbsp;</div><div>&nbsp; &nbsp; TableExists = not (Clomosy.DBSQLiteQuery.Eof);</div><div>&nbsp; &nbsp;&nbsp;</div><div>&nbsp; &nbsp; if not (TableExists)</div><div>&nbsp; &nbsp; {</div><div>&nbsp; &nbsp; &nbsp; Clomosy.DBSQLiteQuery.Sql.Text = 'CREATE TABLE Users(user_id INTEGER PRIMARY KEY AUTOINCREMENT, user_name TEXT, user_surname TEXT, user_password TEXT)';</div><div>&nbsp; &nbsp; &nbsp; Clomosy.DBSQLiteQuery.OpenOrExecute;</div><div>&nbsp; &nbsp; &nbsp; ShowMessage('Kullanıcı tablosu başarıyla oluşturuldu!');</div><div>&nbsp; &nbsp; }</div><div>&nbsp; &nbsp; else</div><div>&nbsp; &nbsp; {</div><div>&nbsp; &nbsp; &nbsp; ShowMessage('Kullanıcı tablosu zaten mevcut.');</div><div>&nbsp; &nbsp; }</div><div>&nbsp; except</div><div>&nbsp; &nbsp; ShowMessage('Veritabanı işlemleri sırasında bir hata oluştu: ' + LastExceptionMessage);</div><div>}</div><div>}</div><div><br></div><div><br></div>]]>
   </description>
   <pubDate>Tue, 27 Aug 2024 14:59:12 +0000</pubDate>
   <guid isPermaLink="true">https://forum.clomosy.com.tr/forum_posts.asp?TID=910&amp;PID=1748#1748</guid>
  </item> 
 </channel>
</rss>