Arsip: Menampilkan Daftar Database Mysql

more 16 years ago
ekosch
Mau tanya nih.. :?:
gimana caranya ya agar bisa nampilkan list database
yang ada di mysql server (seperti pada ms sql server).
maksudnya agar bisa milih database name dari program
yang dibuat, tidak dari tool mysql spt mysql gui, dll

more 16 years ago
LuriDarmawan
sy belum begitu ngeh maksudnya.
tapi kalo query untuk menampikan database di myql,
boleh coba:
show databases;
kali aja ada sambungannya
more 16 years ago
ekosch
intinya cuman mau nampilkan daftar database yg ada didalam server mysql ke dalam combobox aja kok,
udah utak-atik akhirnya ketemu sbb; mungkinkah ada yg lain lebih simple lagi?
q1.SQL.Text:='show databases';
q1.Open;
q1.First;
ComboBox1.Items.Clear;
repeat
ComboBox1.Items.Add(q1['database']);
application.ProcessMessages;
q1.Next;
until q1.Eof;
q1.close;

more 16 years ago
ImanD
yg ini mungkin bukan lebih simple tapi lebih aman,
begin
with q1, ComboBox1 do
begin
Items.Clear;
Close;
SQL.Text:='show databases;';
Open;
while not eof do
begin
Items.Add(Fields[0].AsString);
Next;
end;
end;
end;
more ...
- Pages:
- 1
reply |
Report Obsolete
AI Forward

🚀 We're thrilled to partner with Alibaba Cloud for "AI Forward - Alibaba Cloud Global Developer Summit 2025" in Jakarta! Join us and explore the future of AI. Register now:
https://int.alibabacloud.com/m/1000400772/
#AlibabaCloud #DeveloperSummit #Jakarta #AIFORWARD
Last Articles
Last Topic
- PascalTalk #6: (Podcast) Kuliah IT di luar negeri, susah gak sih?
by LuriDarmawan in Tutorial & Community Project more 4 years ago - PascalTalk #5: UX: Research, Design and Engineer
by LuriDarmawan in Tutorial & Community Project more 4 years ago - PascalTalk #4: Obrolan Ringan Seputar IT
by LuriDarmawan in Tutorial & Community Project more 4 years ago - PascalTalk #2: Membuat Sendiri SMART HOME
by LuriDarmawan in Tutorial & Community Project more 4 years ago - PascalTalk #3: RADically Fast and Easy Mobile Apps Development with Delphi
by LuriDarmawan in Tutorial & Community Project more 4 years ago - PascalTalk #1: Pemanfaatan Artificial Intelligence di Masa Covid-19
by LuriDarmawan in Tutorial & Community Project more 4 years ago - Tempat Latihan Posting
by LuriDarmawan in OOT more 5 years ago - Archive
- Looping lagi...
by idhiel in Hal umum tentang Pascal Indonesia more 12 years ago - [ask] koneksi ke ODBC user Dsn saat runtime dengan ado
by halimanh in FireBird more 12 years ago - Validasi menggunakan data tanggal
by mas_kofa in Hal umum tentang Pascal Indonesia more 12 years ago
Random Topic
- Database Selain Access
by khairulfahmi in Hal umum tentang Pascal Indonesia more 18 years ago - list index out of bounds[4]
by lithium in Paradox more 17 years ago - Beda BDE dan ADO
by hendrikwjy in MySQL more 19 years ago - Import ke MSSQL dari database lain
by xmbohx in MsSQL more 17 years ago - tip and trik develop aplikasi three tier
by ipaseti in Tip n Trik Pemrograman more 18 years ago - print dbgrid
by jordan in Hal umum tentang Pascal Indonesia more 18 years ago - Install DevExpress ExpressQuantumGrid Suite v5.15 ??
by javaman in Hal umum tentang Pascal Indonesia more 18 years ago - melanjtkan posting fingetec
by keylock in Enginering more 15 years ago - Gimana caranya menampilkan listbox pad Tmemo
by RedsGrands in Bedah Kasus more 17 years ago - A Simple Question.. How to open yahoo messenger with delphi?
by johnizzy in Tip n Trik Pemrograman more 16 years ago