<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://lms.onnocenter.or.id/wiki/index.php?action=history&amp;feed=atom&amp;title=Menggunakan_UnixODBC</id>
	<title>Menggunakan UnixODBC - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://lms.onnocenter.or.id/wiki/index.php?action=history&amp;feed=atom&amp;title=Menggunakan_UnixODBC"/>
	<link rel="alternate" type="text/html" href="https://lms.onnocenter.or.id/wiki/index.php?title=Menggunakan_UnixODBC&amp;action=history"/>
	<updated>2026-04-19T16:22:00Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.45.1</generator>
	<entry>
		<id>https://lms.onnocenter.or.id/wiki/index.php?title=Menggunakan_UnixODBC&amp;diff=5344&amp;oldid=prev</id>
		<title>Onnowpurbo: New page: Di ambil dari http://www.besy.co.uk/debian/how_to_install_and_configure_unixodbc  UnixODBC HOWTO   # aptitude install unixodbc unixodbc-bin unixodbc-dev odbcinst1debian1 libmyodbc  Configu...</title>
		<link rel="alternate" type="text/html" href="https://lms.onnocenter.or.id/wiki/index.php?title=Menggunakan_UnixODBC&amp;diff=5344&amp;oldid=prev"/>
		<updated>2009-03-31T22:17:55Z</updated>

		<summary type="html">&lt;p&gt;New page: Di ambil dari http://www.besy.co.uk/debian/how_to_install_and_configure_unixodbc  UnixODBC HOWTO   # aptitude install unixodbc unixodbc-bin unixodbc-dev odbcinst1debian1 libmyodbc  Configu...&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;Di ambil dari http://www.besy.co.uk/debian/how_to_install_and_configure_unixodbc&lt;br /&gt;
&lt;br /&gt;
UnixODBC HOWTO&lt;br /&gt;
&lt;br /&gt;
 # aptitude install unixodbc unixodbc-bin unixodbc-dev odbcinst1debian1 libmyodbc&lt;br /&gt;
&lt;br /&gt;
Configure drivers in /etc/odbcinst.ini:&lt;br /&gt;
&lt;br /&gt;
 [MySQL]&lt;br /&gt;
 Description     = MySQL driver for Linux &amp;amp; Win32&lt;br /&gt;
 Driver          = /usr/lib/odbc/libmyodbc.so&lt;br /&gt;
 Setup           = /usr/lib/odbc/libodbcmyS.so&lt;br /&gt;
 FileUsage       = 1&lt;br /&gt;
 UsageCount      = 1&lt;br /&gt;
&lt;br /&gt;
Configure data-sources in /etc/odbc.ini:&lt;br /&gt;
&lt;br /&gt;
 [test]&lt;br /&gt;
 Description = MySQL Test&lt;br /&gt;
 Driver      = MySQL&lt;br /&gt;
 SERVER      = localhost&lt;br /&gt;
 USER        = username&lt;br /&gt;
 PASSWORD    = password&lt;br /&gt;
 PORT        = 3306&lt;br /&gt;
 DATABASE    = test&lt;br /&gt;
 Option      = 3&lt;br /&gt;
&lt;br /&gt;
And test:&lt;br /&gt;
&lt;br /&gt;
 isql test&lt;br /&gt;
&lt;br /&gt;
If your installing UnixODBC for use with a web-based scripting language like iHTML then you&amp;#039;ll need to set the ownership and/or permissions for odbc.ini so that the web-server user can read the file. For standard configurations the user will be www-data, for mpm-itk or su-php configurations you&amp;#039;ll need to grant the virtual group read access.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Lebih lengkap tentang isql&lt;br /&gt;
&lt;br /&gt;
 **********************************************&lt;br /&gt;
 * unixODBC - isql                            *&lt;br /&gt;
 **********************************************&lt;br /&gt;
 * Syntax                                     *&lt;br /&gt;
 *                                            *&lt;br /&gt;
 *      isql DSN [UID [PWD]] [options]        *&lt;br /&gt;
 *                                            *&lt;br /&gt;
 * Options                                    *&lt;br /&gt;
 *                                            *&lt;br /&gt;
 * -b         batch.(no prompting etc)        *&lt;br /&gt;
 * -dx        delimit columns with x          *&lt;br /&gt;
 * -x0xXX     delimit columns with XX, where  *&lt;br /&gt;
 *            x is in hex, ie 0x09 is tab     *&lt;br /&gt;
 * -w         wrap results in an HTML table   *&lt;br /&gt;
 * -c         column names on first row.      *&lt;br /&gt;
 *            (only used when -d)             *&lt;br /&gt;
 * -mn        limit column display width to n *&lt;br /&gt;
 * -v         verbose.                        *&lt;br /&gt;
 * -lx        set locale to x                 *&lt;br /&gt;
 * --version  version                         *&lt;br /&gt;
 *                                            *&lt;br /&gt;
 * Notes                                      *&lt;br /&gt;
 *                                            *&lt;br /&gt;
 *      isql supports redirection and piping  *&lt;br /&gt;
 *      for batch processing.                 *&lt;br /&gt;
 *                                            *&lt;br /&gt;
 * Examples                                   *&lt;br /&gt;
 *                                            *&lt;br /&gt;
 *      cat My.sql | isql WebDB MyID MyPWD -w *&lt;br /&gt;
 *                                            *&lt;br /&gt;
 *      Each line in My.sql must contain      *&lt;br /&gt;
 *      exactly 1 SQL command except for the  *&lt;br /&gt;
 *      last line which must be blank.        *&lt;br /&gt;
 *                                            *&lt;br /&gt;
 * Please visit;                              *&lt;br /&gt;
 *                                            *&lt;br /&gt;
 *      http://www.unixodbc.org               *&lt;br /&gt;
 *      pharvey@codebydesign.com              *&lt;br /&gt;
 *      nick@easysoft.com                     * &lt;br /&gt;
 **********************************************&lt;/div&gt;</summary>
		<author><name>Onnowpurbo</name></author>
	</entry>
</feed>