The file that accompanies this in the distribution,
horde/scripts/database/sybase_create.sql, will allow you to configure a
Sybase Database server for Horde/IMP.

This can't be done automatically because, let's face it, databases are never
standard. In fact, everything I tell you to do here can be done in about one
thousand ways, this is just known to work and be fairly standard and secure
at the same time.



Prerequisites to running this script:
-------------------------------------

	1) You must create a database called "horde". The 'isql' command to
	   do this is "create database horde".

	2) [recommended] Create a login to use with this database. The
           'isql' command to do this is "sp_addlogin <username> <password>".

	3) [recommended] Change the ownership of the database to the login
           you just created. The 'isql' command is "sp_changedbowner <username>".



To run the script itself, you just fire off this command from your favorite
Sybase-configured shell:

<prompt>% isql -i sybase_create.sql -U<username> -P<password>

(obviously fill in the username/password information with the stuff you
added in the prerequisites)

In imp/config/defaults.php3, you should configure the database username and
password to be the username and password you just added here as well.

Enjoy-
-Mike
(mike@itsprojects.com)
