Jump to content

Ams Ile Sqlite 3 Kullanımı


galetis
 Share

  

69 members have voted

  1. 1. Videolar ve kodlar sürdürülüp T-Sql komutları başlasınmı ?

    • Evet
      64
    • Hayır
      5


Recommended Posts

  • Replies 153
  • Created
  • Last Reply

Top Posters In This Topic

Herşey mükemmel olmuş kardeşim ellerine sağlık sadece kişiyi comboboxtan değilde listboxtan seçmek istiyorum
sonuçta oraya ben yüz kişi eklersem comboboxta seçmem zor olur ama arama kutusuna adamın ismini kısaca yazarsam seçmem daha kolay olacak bu konudada yardım edersen çok harika olacak

Link to comment
Share on other sites

[quote name='ali::12' date='04 June 2011 - 17:21 ' timestamp='1307200913' post='1024104']
Herşey mükemmel olmuş kardeşim ellerine sağlık sadece kişiyi comboboxtan değilde listboxtan seçmek istiyorum
sonuçta oraya ben yüz kişi eklersem comboboxta seçmem zor olur ama arama kutusuna adamın ismini kısaca yazarsam seçmem daha kolay olacak bu konudada yardım edersen çok harika olacak
[/quote]

sen düzenlemesini yaparsın kardeşim proje var elimde ondan dolayı pek uğraşamıyorum


https://rapidshare.com/files/1977600988/SQL_v.2.apz :folder:

Edited by Sistemci
Link to comment
Share on other sites

  • 6 ay sonra...

[quote name='ReaLyMaN' date='22 December 2011 - 20:25 ' timestamp='1324578316' post='1130710']
Hata yok ben indirdim sorunsuz.
[/quote]

[img]http://c1112.hizliresim.com/s/q/18xyc.png[/img]


Diğerlerini indirdim hocam, sadece ilk dersi indiremiyorum. Malum ilk ders çok önemli :)
Benim için tekrar upload edebilirsen sevinirim.

Link to comment
Share on other sites

[quote name='ReaLyMaN' date='22 December 2011 - 20:44 ' timestamp='1324579469' post='1130716']
Şimdi tekrar baktım linke bende de hata veriyor.Bu yüzden ilk dersi yükledim.
[/quote]

Teşekkürler indirdim... :good:

Link to comment
Share on other sites

  • 2 hafta sonra ...

[quote name='neccooy' date='03 January 2012 - 22:39 ' timestamp='1325619559' post='1135406']
Arkadaşlar database içine ams komutu ile table ekleyebiliyor muyuz ve eklediğimiz table'ları listeletebiliyor muyuz?
[/quote]


Tablo oluşturma;
[codebox]
CREATE TABLE test_table
(col1 INTEGER NOT NULL,
col2 CHAR(25),
col3 VARCHAR(25),
col4 NUMERIC NOT NULL,
col5 TEXT(25),
PRIMARY KEY (col1),
UNIQUE (col2))
[/codebox]



Varolan tabloların isimlerini alma;
[code]SELECT * FROM dbname.sqlite_master WHERE type='table';
[/code]

Link to comment
Share on other sites

  • 5 ay sonra...

DataBase dosyasına ams ile yaptığımız bağlantıyı kullanıcı adı ve parola ya da sadece parola ile erişilebilecek şekilde yapabiliyor muyuz?
Navicat'de sadece parola kısmı var ama ams bağlantı komutunda kullanıcı adı ve parola kısmı var.

Link to comment
Share on other sites

  • 9 ay sonra...
  • 1 ay sonra...

Hocam iyi çalışma olmuş ama benim şöyle bir sorum var. İkinci bir table'dan verileri nasıl çekerim.

 

Yani şöyle: first_table'da ILACID var. bu ILACID değerlerini second_table'dan alıyor. eğer a isimli kişide bu ILACID'de girdi varsa o girdi değerlerini nasıl aldırırım?

Link to comment
Share on other sites

  • Editor

select ILACAD from first_table,second_table where first_table.ILACID = second_table.ID

 

eger birincitablodaki ilaç ıd si ile ikinci tablodaki ıd uyuşursa bana ilaç adını getir.

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...