Berbagi Senyum

Semoga tulisan ini dapat membuat Anda "Tersenyum" ^___^

Selasa, 27 Agustus 2013

Cara Mengaktifkan Module "rewrite" di Wamp

wamp tray icon --> apache --> apache module --> rewrite module

sumber : http://forum.wampserver.com/read.php?2,30758,30758

Selasa, 04 Oktober 2011

Format Ribuan di MySQL

SELECT REPLACE(REPLACE(REPLACE(FORMAT(pendapatan, 2), ".", "@"), ",", "."), "@", ",") as pendapatan FROM tgaji_rinci

Gambar hasil query di atas

Jumat, 09 September 2011

Komponen ZQuery Jadi-jadian di Delphi

var Qf:TZQuery;
begin
  try
    Qf:=TZQuery.Create(nil);
    Qf.Connection:=ZConnection1;

    Qf.Close;
    Qf.SQL.Text:='';
    Qf.ExecSQL;
  except
    // do nothing
  end;
end;