This is default featured slide 1 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

This is default featured slide 2 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

This is default featured slide 3 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

This is default featured slide 4 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

This is default featured slide 5 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

Senin, 03 Maret 2014

Contoh Lembar Pengesahan Laporan




LEMBAR PENGESAHAN

SISTEM INFORMASI ADMINISTRASI
NOTARIS Hj. HANI MULIYANI, SH, SP1.
DENGAN BORLAND DELPHI 7


Disetujui pada tanggal, …., Desember 2013

Pembimbing DU/DI







Sri Sulistiani
Guru pembimbing







U. Jeni Ahmad Yani,S.T


Mengetahui,
Kepala Sekolah







Dendang Sutiana, M.Pd
NIP . 197009292000121002


Guru Pembimbuing







Ihin Nasihin, S.T


Sabtu, 15 Februari 2014

Mengatasi Apache di XAMPP yang tidak bisa "Running"


Mengatasi Apache XAMPP yang tidak bisa berjalan 'Running' di Windows 8


      Penyebab yang sangat mungkin terjadi adalah karena telah ada service lain yang telah menempati port 80, misalkan ColdFusion Server, IIS Server, Skype, dll. Apache server sendiri secara default mensyaratkan untuk menempati port 80 agar dapat berjalan. Jika kita menemui hal seperti di atas di mana Apache server tidak mau berjalan, untuk memastikan bahwa port 80 memang digunakan oleh service lain di PC kita, kita bisa mengubah port untuk menjalankan Apache service tersebut. Caranya:

Berikut adalah cara merubah settingan port pada Apache dari XAMPP:


1. Lakukan perubahan pada file httpd.conf
2. Buka file httpd.conf di C:\xampp\apache\conf\
3. Lalu lakukan find untuk kata “Listen 80” lalu ubah dengan “Listen 8080”
4. Masih di file yang sama, lakukan find untuk kata “ServerName localhost:80” lalu ubah dengan “ServerName localhost:8080”
5. Lalu simpan perubahan tersebut
6. Buka file httpd-ssl.conf di C:\xampp\apache\conf\extra\
7. Lalu lakukan find untuk kata “Listen 443” lalu ubah dengan “Listen 4499”




8. Masih di file yang sama, lakukan find untuk kata
   "virtualhost_default_:443"
   Lalu ubah dengan
   "virtualhost_default_:4499"

9. Masih di file yang sama, lakukan find untuk kata “ServerName localhost:443” lalu ubah dengan “ServerName localhost:4499”

Lalu jalankan XAMPP Control Panel pada C:\xampp\xampp-control.exe
Klik Start pada Apache maka di kotak detail yang bawah muncul peringatan “Apache started [Port 80]”
Lalu buka browser dan ketika pada address http://localhost:8080/xampp
Jika berhasil maka Web Service Apache tersebut telah berjalan di port 8080.



Selain karena penyebab diatas, kasus lain jika ada aplikasi Skype yang berjalan pada PC kita, bisa jadi service  aplikasi tersebut yang telah menempati port 80. Untuk mematikasnnya, buka aplikasi Skype lalu pilih menu Tools -> Advanced -> Connections. Lalu hilangkan tanda centang (uncheck) pilihan ”Use Port 80 and 443″ dan tutup aplikasi Skype. Coba jalankan kembali Apache server.

tapi agar bisa berjalan dengan normal seperti biasa, bagi yang menginstall skype, coba uninstall skype, dan coba jalankan kembali Apache secara normal tanpa ada tambahan.....
  

Semoga bermanfaaat!!!

Rabu, 12 Februari 2014

Stored Procedure MySql

Stored Procedure


Bentuk umum stored procedure:
Ø  CREATE PROCEDURE {TAMBAH/UBAH/HAPUS} (IN VNAMA FIELDNYA)
Ø  {INSERT/UPDATE/DELETE} {KONDISI};
            Kemudian memasukan data dengan syntak :
Ø  CALL {TAMBAH/UBAH/HAPUS} (DATA  YANG AKAN DIMASUKAN);

Contoh Kasus:
Membuat database smk_cendikia:
Mysql > create database smk_cendikia;
Menggunakan database:
Myssql > use smk_cendikia;

Membuat tabel biodata_siswa:
Mysql > create table biodata_siswa
> (
> Id varchar (10),
> Nama varchar (25),
> Alamat varchar (25)
> );

Menambah data:
Mysql > create procedure tambah (in vid                                                                                                varchar (10), in vnama varchar (25), in valamat (25))
> Insert into biodata_siswa values (vid, vnama, valamat);
Mysql > call tambah (‘123’, ‘Yunus’, ‘Sumulagung’);
Mysql > call tambah (‘124’, ‘Zunaedi’, ‘Cikunir’);

Menampilkan data:
Mysql > create procedure tampil ( )
 > select id, nama, alamat from
    biodata_siswa;
Mysql > call tampil ( );

Mengubah data:
Mysql > create procedure ubah (in vid varchar (10), vnama varchar (25), valamat varchar (25))
> update biodata_siswa set  nama=vnama, alamat=valamat where id=vid;
Mysql > call ubah (‘123’, ‘Muhammad Yunus’, ‘Tasikmalaya’);
Mysql > call tampil ( );

Menghapus data:
Mysql > create procedure hapus ( in vid varchar (10));
Mysql > call hapus (1);

Mysql > call tampil ( );