Jump to content

Veritabanında Arama Yapmak


 Share

Recommended Posts

Aşağıdaki örnek aradığınız metni tüm sutunlarda gerçek zamanlı olarak benzeyecek şekilde eşleştirir. Ama bu örnek büyük veritabanı dosyalarında arama yaparken programın kasılmasına neden olur. O yüzden inputtaki kodların başına aşağıdaki koşulu eklerseniz sadece entera basınca arama yapacaktır.

if e_ID == 13 then

Örnek proje: https://www.sugarsync.com/pf/D1846013_160_685185848

Link to comment
Share on other sites


metin = Input.GetText(this);
	TreeList.ClearRows("Plugin1")

	SQLite3Cursor, err = SQLite3Connection:execute("SELECT * FROM musteriler WHERE musteriadisoyadi LIKE '%" .. metin .. "%' OR telefon LIKE '%" .. metin .. "%' OR mail LIKE '%" .. metin .. "%' OR boyaadi LIKE '%" .. metin .. "%' OR boyabilgi LIKE '%" .. metin .. "%' ORDER BY isim ASC");	
	tVeri = SQLite3Cursor:fetch({}, "a");
	while tVeri do
	musteriadi 	= tVeri.musteriadisoyadi;
	telefon = tVeri.telefon;
	mail = tVeri.mail;
	boyaadi = tVeri.boyaadi;
	boyabilgi = tVeri.boyabilgi;
	
	TreeList.AddRow("Plugin1", musteriadi.."|"..telefon.."|"..mail.."|"..boyaadi.."|"..boyabilgi, nil, 0, nil)
	
	tVeri = SQLite3Cursor:fetch({}, "a");
	end
	
	

Ben kendime göre düzenlemeden önce "db" nil value diyordu bende db yerlerini sqlite3cursor yaptım ama yine sonuç aynı ne yapabilirim?

 

 

EDİT : SORUN ÇÖZÜMÜŞTÜR..

 

SQLite3Cursor, err = SQLite3Connection:execute("SELECT * FROM musteriler WHERE musteriadisoyadi LIKE '%" .. metin .. "%' OR telefon LIKE '%" .. metin .. "%' OR mail LIKE '%" .. metin .. "%' OR boyaadi LIKE '%" .. metin .. "%' OR boyabilgi LIKE '%" .. metin .. "%' ORDER BY isim ASC");

 

isim bölümünü kendime göre ayarladı sorun çözüldü.

Edited by nightmare3519
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

  • Recently Browsing   0 members

    No registered users viewing this page.

×
×
  • Create New...