Diberdayakan oleh Blogger.
RSS

Privacy Policy

This Privacy Policy governs the manner in which dgrym collects, uses, maintains and discloses information collected from users (each, a "User") of the infosekali.blogspot.com website ("Site"). This privacy policy applies to the Site and all products and services offered by dgrym.
Personal identification information
We may collect personal identification information from Users in a variety of ways, including, but not limited to, when Users visit our site, subscribe to the newsletter, respond to a survey, and in connection with other activities, services, features or resources we make available on our Site. Users may be asked for, as appropriate, name, email address. We will collect personal identification information from Users only if they voluntarily submit such information to us. Users can always refuse to supply personally identification information, except that it may prevent them from engaging in certain Site related activities.
Non-personal identification information
We may collect non-personal identification information about Users whenever they interact with our Site. Non-personal identification information may include the browser name, the type of computer and technical information about Users means of connection to our Site, such as the operating system and the Internet service providers utilized and other similar information.
Web browser cookies
Our Site may use "cookies" to enhance User experience. User's web browser places cookies on their hard drive for record-keeping purposes and sometimes to track information about them. User may choose to set their web browser to refuse cookies, or to alert you when cookies are being sent. If they do so, note that some parts of the Site may not function properly.
How we use collected information
Desainologi may collect and use Users personal information for the following purposes:
  • - To improve customer service
    Information you provide helps us respond to your customer service requests and support needs more efficiently.
  • - To personalize user experience
    We may use information in the aggregate to understand how our Users as a group use the services and resources provided on our Site.
  • - To improve our Site
    We may use feedback you provide to improve our products and services.
  • - To run a promotion, contest, survey or other Site feature
    To send Users information they agreed to receive about topics we think will be of interest to them.
  • - To send periodic emails
    We may use the email address to respond to their inquiries, questions, and/or other requests. If User decides to opt-in to our mailing list, they will receive emails that may include company news, updates, related product or service information, etc. If at any time the User would like to unsubscribe from receiving future emails, we include detailed unsubscribe instructions at the bottom of each email.
How we protect your information
We adopt appropriate data collection, storage and processing practices and security measures to protect against unauthorized access, alteration, disclosure or destruction of your personal information, username, password, transaction information and data stored on our Site.
Sharing your personal information
We do not sell, trade, or rent Users personal identification information to others. We may share generic aggregated demographic information not linked to any personal identification information regarding visitors and users with our business partners, trusted affiliates and advertisers for the purposes outlined above.We may use third party service providers to help us operate our business and the Site or administer activities on our behalf, such as sending out newsletters or surveys. We may share your information with these third parties for those limited purposes provided that you have given us your permission.
Third party websites
Users may find advertising or other content on our Site that link to the sites and services of our partners, suppliers, advertisers, sponsors, licensors and other third parties. We do not control the content or links that appear on these sites and are not responsible for the practices employed by websites linked to or from our Site. In addition, these sites or services, including their content and links, may be constantly changing. These sites and services may have their own privacy policies and customer service policies. Browsing and interaction on any other website, including websites which have a link to our Site, is subject to that website's own terms and policies.
Advertising
Ads appearing on our site may be delivered to Users by advertising partners, who may set cookies. These cookies allow the ad server to recognize your computer each time they send you an online advertisement to compile non personal identification information about you or others who use your computer. This information allows ad networks to, among other things, deliver targeted advertisements that they believe will be of most interest to you. This privacy policy does not cover the use of cookies by any advertisers.
Google Adsense
Some of the ads may be served by Google. Google's use of the DART cookie enables it to serve ads to Users based on their visit to our Site and other sites on the Internet. DART uses "non personally identifiable information" and does NOT track personal information about you, such as your name, email address, physical address, etc. You may opt out of the use of the DART cookie by visiting the Google ad and content network privacy policy at http://www.google.com/privacy_ads.html
Changes to this privacy policy
Desainologi has the discretion to update this privacy policy at any time. When we do, we will revise the updated date at the bottom of this page. We encourage Users to frequently check this page for any changes to stay informed about how we are helping to protect the personal information we collect. You acknowledge and agree that it is your responsibility to review this privacy policy periodically and become aware of modifications.
Your acceptance of these terms
By using this Site, you signify your acceptance of this policy and terms of service. If you do not agree to this policy, please do not use our Site. Your continued use of the Site following the posting of changes to this policy will be deemed your acceptance of those changes.
Contacting us
If you have any questions about this Privacy Policy, the practices of this site, or your dealings with this site, please contact us at:
Yogyakarta
alfiannj@gmail.com

  • Digg
  • Del.icio.us
  • StumbleUpon
  • Reddit
  • RSS

Mengubah dan Menghapus Table Pada SQL (Structured Query Language)

Mengubah Struktur Table dengan ALTER
  Untuk mengubah struktur suatu tabel, bentuk umum perintah SQL-nya sebagai berikut :

ALTER TABLE nama_tabel alter_options;

  dimana :
  1. ALTER TABLE merupakan perintah dasar untuk mengubah tabel.
  2. nama_tabel merupakan nama tabel yang akan diubah strukturnya.
  3. alter_options merupakan pilihan perubahan tabel. Option yang bisa digunakan, beberapa di antaranya sebagai berikut :
    ADD definisi_field_baru
      Option ini digunakan untuk menambahkan field baru dengan “definisi_field_baru” (nama field, tipe dan option lain).
    ADD INDEX nama_index
      Option ini digunakan untuk menambahkan index dengan nama “nama_index” pada tabel.
    ADD PRIMARY KEY (field_kunci)
      Option untuk menambahkan primary key pada tabel
    CHANGE field_yang_diubah definisi_field_baru
      Option untuk mengubah field_yang_diubah menjadi definisi_field_baru
    MODIFY definisi_field
      Option untuk mengubah suatu field menjadi definisi_field
    DROP nama_field
      Option untuk menghapus field nama_field
    RENAME TO nama_tabel_baru
      Option untuk mengganti nama tabel

Mengubah Nama Tabel
  Untuk mengubah nama suatu tabel, dapat menggunakan perintah SQL sbb :

RENAME TABLE mhs TO mahasiswa;
ALTER TABLE mhs RENAME TO mahasiswa;

  Perintah di atas akan mengubah tabel mhs menjadi mahasiswa.

Menghapus Tabel
  Untuk menghapus sebuah tabel, bentuk umum dari perintah SQL adalah sebagai berikut :

DROP TABLE nama_tabel;

  Contohnya kita akan menghapus tabel dengan nama “mahasiswa” maka perintah SQL-nya adalah :

DROP TABLE mahasiswa;

  • Digg
  • Del.icio.us
  • StumbleUpon
  • Reddit
  • RSS

Membuat Table Pada SQL (Structured Query Language)

  Bentuk umum SQL untuk membuat suatu table secara sederhana sebagai berikut :

CREATE TABLE nama_tabel (
field1 tipe(panjang),
field2 tipe(panjang),
...
fieldn tipe(panjang),
PRIMARY KEY (field_key)
);

  Bentuk umum di atas merupakan bentuk umum pembuatan tabel yang sudah disederhanakan. Penamaan tabel dan field memiliki aturan yang sama dengan penamaan database.
  MySQL menyediakan berbagai tipe data dengan spesifikasi dan panjang masing-masing. Tipe data untuk field dalam MySQL diantaranya ditampilkan pada tabel berikut ini :

Jenis NUMERIK
  • Tipe TINYINT (-128 s/d 127 SIGNED, 0 s/d 255 UNSIGNED)
  • Tipe SMALLINT (-32768 s/d 32767 SIGNED, 0 s/d 65535 UNSIGNED)
  • Tipe MEDIUMINT (-8388608 s/d 8388607 SIGNED, 0 s/d 16777215 UNSIGNED)
  • Tipe INT (-2147483648 s/d 2147483647 SIGNED, 0 s/d 4294967295 UNSIGNED)
  • Tipe BIGINT (-9223372036854775808 s/d 9223372036854775807 SIGNED, 0 s/d 18446744073709551615 UNSIGNED)
  • Tipe FLOAT (Bilangan pecahan presisi tunggal)
  • Tipe DOUBLE (Bilangan pecahan presisi ganda)
  • Tipe DECIMAL (Bilangan dengan desimal)

Jenis DATE/TIME
  • DATE (Tanggal dengan format YYYY-MM-DD)
  • DATETIME (Tanggal dan waktu dengan format : YYYY-MM-DD HH:MM:SS)
  • TIMESTAMP (Tanggal dan waktu dengan format : YYYYMMDDHHMMSS)
  • TIME (Waktu dengan format HH:MM:SS)
  • YEAR (Tahun dengan format YYYY)

Jenis STRING
  • CHAR (0 – 255 karakter)
  • VARCHAR (0 – 255 karakter)
  • TINYTEXT (String dengan panjang maksimum 255 karakter)
  • TEXT (String dengan panjang maksimum 65535 karakter)
  • BLOB (String dengan panjang maksimum 65535 karakter)
  • MEDIUMTEXT (String dengan panjang maksimum 16777215 karakter)
  • MEDIUMBLOB (String dengan panjang maksimum 16777215 karakter)
  • LONGTEXT (String dengan panjang maksimum 4294967295 karakter)
  • LONGBLOB (String dengan panjang maksimum 4294967295 karakter)

Jenis KHUSUS
  • ENUM (Tipe data dengan isi tertentu)
  • SET (Tipe data dengan isi tertentu)

Selanjutnya untuk melihat tabel mhs sudah benar-benar sudah ada atau belum, ketikkan perintah berikut ini :

SHOW TABLES;

Perintah di atas akan menampilkan seluruh tabel yang sudah ada dalam suatu database.








  • Digg
  • Del.icio.us
  • StumbleUpon
  • Reddit
  • RSS

Membuat, Menampilkan, Membuka dan Menghapus Database Pada SQL

Membuat Database
  Sintaks umum SQL untuk membuat suatu database adalah sebagai berikut :

CREATE DATABASE [IF NOT EXISTS] nama_database;
 
  Bentuk perintah di atas akan membuat sebuah database baru dengan nama nama_database. Aturan penamaan sebuah database sama seperti aturan penamaan sebuah variabel, dimana secara umum nama database boleh terdiri dari huruf, angka dan under-score (_). Jika database yang akan dibuat sudah ada, maka akan muncul pesan error. Namun jika ingin otomatis menghapus database yang lama jika sudah ada, aktifkan option IF NOT EXISTS.Setiap kita membuat database baru, maka sebenarnya MySQL akan membuat suatu folder (direktori) sesuai dengan nama databasenya yang ditempatkan secara default di C:\mysql\data. Di dalam folder tersebut nantinya akan terdapat file-file yang berhubungan dengan tabel dalam database.
  Berikut ini contoh perintah untuk membuat database baru dengan nama “mahasiswa” :
 
CREATE DATABASE mahasiswa;
 
  Jika query di atas berhasil dieksekusi dan database berhasil dibuat, maka akan ditampilkan pesan sebagai berikut :
 
Query OK, 1 row affected (0.02 sec)

Menampilkan Database
  Untuk melihat database yang baru saja dibuat atau yang sudah ada, dapat menggunakan perintah sebagai berikut :
 
SHOW DATABASES;
 
  Hasil dari perintah di atas akan menampilkan semua database yang sudah ada di MySQL. Berikut ini contoh hasil dari query di atas :
 
+--------------+
| Database    |
+--------------+
| mahasiswa  |
| mysql          |
| test              |
+--------------+
3 rows in set (0.02 sec)

 
Membuka Database
  Sebelum melakukan manipulasi tabel dan record yang berada di dalamnya, kita harus membuka atau mengaktifkan databasenya terlebih dahulu. Untuk membuka database “mahasiswa”, berikut ini querynya :
 
USE mahasiswa;
 
  Jika perintah atau query di atas berhasil, maka akan ditampilkan pesan sebagai berikut :

Database changed
 
Menghapus Database
  Untuk menghapus suatu database, sintaks umumnya adalah sbb :
 
DROP DATABASE [IF EXISTS] nama_database;
 
  Bentuk perintah di atas akan menghapus database dengan nama nama_database. Jika databasenya ada maka database dan juga seluruh tabel di dalamnya akan dihapus. Jadi berhati-hatilah dengan perintah ini! Jika nama database yang akan dihapus tidak ditemukan, maka akan ditampilkan pesan
error. Aktifkan option IF EXISTS untuk memastikan bahwa suatu database benar-benar ada.
Berikut ini contoh perintah untuk menghapus database dengan nama “mahasiswa” :

DROP DATABASE mahasiswa;

  • Digg
  • Del.icio.us
  • StumbleUpon
  • Reddit
  • RSS

Pengenalan Structured Query Language

  SQL merupakan singkatan dari Structured Query Language. SQL atau juga sering disebut sebagai query merupakan suatu bahasa (language) yang digunakan untuk mengakses database. SQL dikenalkan pertama kali dalam IBM pada tahun 1970 dan sebuah standar ISO dan ANSII ditetapkan untuk SQL. Standar ini tidak tergantung pada mesin yang digunakan (IBM, Microsoft atau Oracle). Hampir semua software database mengenal atau mengerti SQL. Jadi, perintah SQL pada semua software database hampir sama.
Terdapat 2 (dua) jenis perintah SQL, yaitu :
  1. DDL atau Data Definition Language aaa DDL merupakan perintah SQL yang berhubungan dengan pendefinisian suatu struktur database, dalam hal ini database dan table. Beberapa perintah dasar yang termasuk DDL ini antara lain :
    • CREATE
    • ALTER
    • RENAME
    • DROP
  2. DML atau Data Manipulation Language aaa DML merupakan perintah SQL yang berhubungan dengan manipulasi atau pengolahan data atau record dalam table. Perintah SQL yang termasuk dalam DML antara lain :
    • SELECT
    • INSERT
    • UPDATE
    • DELETE

  • Digg
  • Del.icio.us
  • StumbleUpon
  • Reddit
  • RSS

Berbagai MySQL Client untuk Administrasi Server MySQL

  Berikut ini beberapa tools yang biasa digunakan dalam mempermudah administrasi server MySQL. Tools berikut ini hanya digunakan untukmempermudah administrasi MySQL, jadi tidak harus digunakan.
  1. MySQL Command Line Client
      MySQL Command Line Client merupakan tools default MySQL yang sudah disertakan dalam file instalasi MySQL. Aplikasi ini dapat digunakan untuk melakukan koneksi ke MySQL melalui text-based mode.
  2. MySQL-Front
      MySQL-Front merupakan front-end MySQL berbasis Windows yang cukup banyak digunakan. MySQL-Front memiliki user interface yang cukup mudah digunakan, bahkan oleh user pemula. Pada awalnya MySQL-Front merupakan software yang free, namun mulai versi 3.0 ke atas, software ini menjadi software yang bersifat shareware dengan masa percobaan selama 30 hari. Jika Anda ingin mencoba software ini, cobalah MySQL-Front versi 2.5 karena selain masih bebas untuk didownload, versi 2.5 cukup stabil dan sudah teruji. Situs resmi MySQL-Front beralamat di http://www.mysqlfront.de
  3. PHPMyAdmin
      PHPMyAdmin merupakan front-end MySQL berbasis web. PHPMyAdmin dibuat dengan menggunakan PHP. Saat ini, PHPMyAdmin banyak digunakan dalamhampir semua penyedia hosting yang ada di internet. PHPMyAdmin mendukung berbagai fitur administrasi MySQL termasuk manipulasi database, tabel, index dan juga dapat mengeksport data ke dalam berbagai format data. PHPMyAdmin juga tersedia dalam 50 bahasa lebih, termasuk bahasa Indonesia. PHPMyAdmin dapat didownload secara gratis di http://www.phpmyadmin.net
  4. SQLYog
      SQLYog merupakan salah satu front-end MySQL yang cukup populer saat ini. Dengan dukungan fitur yang cukup banyak dan lengkap, SQL Yog tersedia versi commercial dan community (free). SQLYog dapat didownload di situsnya http://www.webyog.com
  5. MySQL Administrator dan MySQL Query Browser
      MySQL Administrator dan MySQL Query Browser merupakan tools administrasi database MySQL yang tersedia di situs resmi MySQL (http://www.mysql.com). Keduanya dapat didownload di alamat http://www.mysql.com/products/tools/.
      Beberapa fitur MySQL Administrator, antara lain :
    • Administrasi user.
    • Halaman monitoring server.
    • Optimatisasi MySQL.
    • Informasi umum keadaan server.
    • Status replication.
    • Cross-platform.
      Beberapa fitur MySQL Query Browser, antara lain :
    • Tampilan dan menu yang mudah (user-friendly).
    • Mendukung beberapa window hasil (result preview) sekaligus.
    • Kemudahan dalam menulis query dengan visual tools.
    • Manipulasi database.
    • Membuat dan manipulasi tabel.
    • SQL statements debugging.

  • Digg
  • Del.icio.us
  • StumbleUpon
  • Reddit
  • RSS

Koneksi ke Server MySQL dengan MySQL Client

  MySQL menyediakan tools untuk melakukan koneksi ke server MySQL, yaitu MySQL Command-Line Client. Tools tersebut dapat diakses dari menu Start > All Programs > MySQL > MySQL Server 5> MySQL Command Line Client. Tampilannya kurang lebih tampak pada gambar berikut ini :
  Untuk melakukan koneksi ke server MySQL, Anda cukup mengetikkan password koneksi MySQL. Password ini didefinisikan pada saat proses instalasi. Jika passwordnya benar, maka akan ditampilkan window sbb :
  Setelah koneksi ke server MySQL berhasil dilakukan, maka akan ditampilkan prompt mysql> seperti pada gambar 12.14. Query atau perintah-perintah MySQL dapat dituliskan pada prompt MySQL ini. Akhiri setiap query dengan titik-koma (;). Selanjutnya untuk keluar dari server MySQL dapat dilakukan dengan mengetikkan perintah quit atau \q pada prompt mysql>.

  • Digg
  • Del.icio.us
  • StumbleUpon
  • Reddit
  • RSS