1 / 5

Installasi ODBC di Linux

Installasi ODBC di Linux. Oleh: Idris Winarno. Installasi Package. # apt-get install unixodbc libmyodbc odbc-postgresql odbcinst1debian1. Installasi Driver. Sebelum installasi cek terlebih dahulu apakah file /etc/odbcinst.ini dan /etc/odbc.ini ada dan dalam kondisi file kosong?

willem
Download Presentation

Installasi ODBC di Linux

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Installasi ODBC di Linux Oleh: Idris Winarno

  2. Installasi Package • # apt-get install unixodbc libmyodbc odbc-postgresql odbcinst1debian1

  3. Installasi Driver • Sebelum installasi cek terlebih dahulu apakah file /etc/odbcinst.ini dan /etc/odbc.ini ada dan dalam kondisi file kosong? • Contoh installasi driver bisa di lihat di • /usr/share/libmyodbc/odbcinst.ini Jadi langsung bisa di entrikan contoh tersebut ke /etc/odbcinst.ini dengan cara # odbcinst -i -d -f /usr/share/libmyodbc/odbcinst.ini • Untuk mengecek apakah installasi driver berhasil cek file /etc/odbcinst.ini harusnya sekarang sudah terisi

  4. Membuat koneksi ke Mysql • Pastikan package mysql-server sudah terinstall • # apt-get install mysql-server Sehingga port 3306 pastikan juga sudah terbuka dalam posisi LISTENING • Contoh untuk koneksi odbc ke mysql bisa dilihat di /usr/share/doc/libmyodbc/examples/odbc.ini • Oleh karena itu buatlah koneksi baru yang disimpan pada file baru contoh /home/user/odbcku : [databaseku] Description = MySQL My Database Driver = MySQL SERVER = localhost USER = idris PASSWORD = idris233 PORT = 3306 DATABASE = idris Option = 3 • Kemudian install odbcnya menggunakan perintah odbcinst -i -s -f /home/user/odbcku • Untuk mengecek apakah installasi berhasil cek file /etc/odbc.ini harusnya sekarang sudah terisi

  5. Testing • Untuk melakukan tes lakukan perintah berikut • # isql databaseku +----------------------------------------+ | Connected! | | | | sql-statement | | help [tablename] | | quit | | | +----------------------------------------+ SQL> • Jika mengalami masalah seperti tersebut dibawah ini: • [ISQL]ERROR: Could not SQLConnect Gunakan perintah # isql -v databaseku untuk melihat debugnya

More Related