Sayfayı Yazdır | Pencereyi Kapat

sqlite

Nereden Yazdırıldığı: Clomosy | Forum
Kategori: Genel Programlama
Forum Adı: Genel İşlemler
Forum Tanımlaması: TRObject dili ile programlama yaparken karşılaşılan genel işlemler
URL: https://forum.clomosy.com.tr/forum_posts.asp?TID=915
Tarih: 06 Ocak 2025 Saat 13:35
Program Versiyonu: Web Wiz Forums 12.07 - https://www.webwizforums.com


Konu: sqlite
Mesajı Yazan: ismail
Konu: sqlite
Mesaj Tarihi: 28 Ağustos 2024 Saat 18:06
 void SqLiteConnectionCreateScorTable;
  var
    TableExists2: Boolean;
  {
    try
      Clomosy.DBSQLiteConnect(Clomosy.AppFilesPath + 'scorDB5.db3', '');
 
      // Check if the table exists
      Clomosy.DBSQLiteQuery.Sql.Text = 'SELECT name FROM sqlite_master WHERE type="table" AND name="scorsnumber3";';
      Clomosy.DBSQLiteQuery.OpenOrExecute;
      
      // Check the results
      TableExists2 = not Clomosy.DBSQLiteQuery.Eof;
      
      // Create the table if it does not exist
      if not(TableExists2)
      {
        Clomosy.DBSQLiteQuery.Sql.Text = 'CREATE TABLE scorsnumber3(
    teamscorone TEXT NOT NULL,
    teamscortwo TEXT NOT NULL
        )';
        Clomosy.DBSQLiteQuery.OpenOrExecute;
        
        ShowMessage('Table successfully added to the database!');
       
      } 

    except
     ShowMessage('Exception Class: '+LastExceptionClassName+' Exception Message: '+LastExceptionMessage);
    }
  }
 
 
 
 
 void scortableinsertdata;
 
   {
 

  try
    
  
   Clomosy.DBSQLiteQuery.SQL.Text='INSERT INTO scorsnumber3(teamscorone,teamscortwo) VALUES ('+QuotedStr(teamscor1)+','+QuotedStr(teamscor2)+')';
    Clomosy.DBSQLiteQuery.OpenOrExecute;
    ShowMessage('madde başarıyla eklendi ');

  
  except
     ShowMessage('Exception Class '+LastExceptionClassName+'Exception Message'+LastExceptionMessage);
  }
  
}


 no such scorsnumber3 hatası alıyorum insert kısmını herhangi bir yerde çağırdığım zaman



Cevaplar:
Mesajı Yazan: Developer
Mesaj Tarihi: 03 Eylül 2024 Saat 15:19
Merhaba İsmail,
Oluşan yapıda scorsnumber bulamıyor. Ondan dolayı hatayı alıyorsun.



Sayfayı Yazdır | Pencereyi Kapat

Forum Software by Web Wiz Forums® version 12.07 - https://www.webwizforums.com
Copyright ©2001-2024 Web Wiz Ltd. - https://www.webwiz.net