Advertisement
Guest User

Untitled

a guest
Mar 14th, 2017
932
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. function [con,table,kolom] = koneksi()
  2. url = 'jdbc:mysql://localhost:3306/';
  3. table='data_pasien';
  4. kolom = {'kode_pasien', 'nama_pasien', 'kategori', 'tempat_lahir', 'tanggal_lahir', 'jenis_kelamin', 'umur', 'alamat', 'telepon', 'keterangan'};
  5. con = database('db_lp2maray', 'root', '', 'com.mysql.jdbc.Driver', url);
  6. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement