AboutSqlGui
Download
Screenshots
Bugs
Feedback
Links
Documentation
News / History
About this site
|
Plugins:
API-Dokumentation
Programm-Installation:
Installation via script (since version 0.4):
-
Unpack SqlGui (x.y.z = SqlGui-Version):
tar -xvzf sqlgui-complete-x.y.z.tar.gz
Some archives ("sqlguipart", "sqlgui" and plugins) and the perl-install-script are created in the directory sqlgui-x.y.z.
- Run the perl-script:
./build_sqlgui.pl
Since the installation-script is still under development, there might be circumstances, when the script fails.
Installation by hand:
-
You need SqlGuiPart, SqlGui and also one or more of the database-plugins. You can find the them in the Download-Area.
-
Install SqlGuiPart:
tar -xvzf sqlguipart-x.y.z.tar.gz
cd sqlguipart-x.y.z
./configure
make
su -c "make install"
-
Install SqlGui:
tar -xvzf sqlgui-x.y.z.tar.gz
cd sqlgui-x.y.z
./configure
make
su -c "make install"
-
Install all plugins you want:
- MySQL:
tar -xvzf sqlguimysql-x.y.z.tar.gz
cd sqlguimysql-x.y.z
You need the paths to "mysql.h" and "libmysqlclient". You can find them with:
locate mysql.h && locate libmysqlclient
Then run:
./configure --with-extra-includes=/usr/local/mysql/include --with-extra-libs=/usr/local/mysql/lib
make
su -c "make install"
- PostgreSQL:
tar -xvzf sqlguipgsql-x.y.z.tar.gz
cd sqlguipgsql-x.y.z
You need the paths to "libpq-fe.h" and "libpq". You can find them with:
Sie benötigen die Pfade zu "libpq-fe.h" und "libpq". Diese finden Sie mittels:
locate libpq-fe.h && locate libpq
Then run:
./configure --with-extra-includes=/usr/local/pgsql/include --with-extra-libs=/usr/local/pgsql/lib
make
su -c "make install"
|
|