Index: openacs-4/packages/acs-core-docs/www/tutorial-database.html =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-core-docs/www/tutorial-database.html,v diff -u -N -r1.26 -r1.27 --- openacs-4/packages/acs-core-docs/www/tutorial-database.html 21 Apr 2004 09:49:43 -0000 1.26 +++ openacs-4/packages/acs-core-docs/www/tutorial-database.html 27 Apr 2004 08:01:35 -0000 1.27 @@ -1,13 +1,13 @@ -Setting Up Database Objects

Setting Up Database Objects

by Joel Aufrecht

+Setting Up Database Objects

Setting Up Database Objects

by Joel Aufrecht

OpenACS docs are written by the named authors, and may be edited by OpenACS documentation staff. -

Code the data model

We create all database objects with scripts in the +

Code the data model

We create all database objects with scripts in the myfirstpackage/sql/ directory. All database scripts are database-specific and are thus in either the myfirstpackage/sql/oracle or - myfirstpackage/sql/postgresql. + myfirstpackage/sql/postgresql directory. Packages can support Oracle, PostgreSQL, or both. In this - tutorial, we'll work only with PostgreSQL

The first file will be + tutorial, we will be working with PostgreSQL

The first file will be myfirstpackage-create.sql. The package manager requires a file with the name packagekey-create.sql, @@ -18,25 +18,26 @@ integrate our table with the OpenACS system. By making each record in our table an OpenACS object, we gain access to the permissions system and to services that integrate with OpenACS - objects, such as general-comments and notification. The cost - that our table creation code must include several functions and - stored procedures and is fairly complicated even for a simple - table.

There are many kinds of OpenACS objects in the system. (You - can see them with select object_type from + objects, such as general-comments and + notification. The cost is + that our table creation code must include several functions, + stored procedures, and is complicated (even for simple tables).

There are many kinds of OpenACS objects in the system. (You + can see them with the psql code: select object_type from acs_object_types;.) One such object is the content_item, which is part of the content repository system. - To use it, we will make our data objects children of the content_revision object, which is a child of content_item. Not only will we gain the benefits of both OpenACS + To use it, we will make our data objects children of the content_revision object, + which is a child of content_item. Not only will we gain the benefits of both OpenACS Objects and content objects, we can also use some content repository functions to simplify our database creation. (More information about ACS Objects. More information about the Content Repository.) -

Figure�9.2.�Tutorial Data Model

Tutorial Data Model

The top of each sql file has some +

Figure�9.2.�Tutorial Data Model

Tutorial Data Model

The top of each sql file has some standard comments, including doc tags such as @author which will be picked up by the API browser. The string $Id$ will automatically be expanded when the file is checked in to cvs.

[service0 ~]$ cd /var/lib/aolserver/service0/packages/myfirstpackage/sql/postgresql
-[service0 postgresql]$ emacs myfirstpackage-create.sql

Paste this into the file and save and close.

Figure�9.3.�Database Creation Script - master create file

-- creation script
+[service0 postgresql]$ emacs myfirstpackage-create.sql

Paste the text below into the file, save, and close.

Figure�9.3.�The Database Creation Script

-- creation script
 --
 -- @author joel@aufrecht.org
 -- @cvs-id &Id:$
@@ -54,14 +55,13 @@
 
 -- necessary to work around limitation of content repository:
 select content_folder__register_content_type(-100,'mfp_note','t');
-

The creation script calls a function, +

The creation script calls a function in PL/pgSQL (PL/pgSQL is a procedural language extention to sql), content_type__create_type, which in turn creates the necessary database changes to support our data - object. Notice the use of "mfp." This token, derived from "My - First Package," ensures that our object is unlikely to conflict - with objects from other packages.

Create a database file to drop everything if the package - is uninstalled.

-[service0 postgresql]$ emacs myfirstpackage-drop.sql

Figure�9.4.�Database deletion script

-- drop script
+    object.  Notice the use of "mfp."  This is derived from "My
+    First Package" and ensures that our object is unlikely to conflict
+    with objects from other packages.

Create a database file to drop everything if the package is uninstalled.

+[service0 postgresql]$ emacs myfirstpackage-drop.sql

Figure�9.4.�Database Deletion Script

-- drop script
 --
 -- @author joel@aufrecht.org
 -- @cvs-id &Id:$
@@ -73,28 +73,20 @@
 	   't',
 	   't'
     );
-

Run the create script manually to add your tables and functions.

[service0 postgresql]$ psql -f myfirstpackage-create.sql
+
+ (like the creation script the drop script calls a PL/pgSQL function: content_type__drop_type

Run the create script manually to add your tables and functions.

[service0 postgresql]$ psql -f myfirstpackage-create.sql
 psql:myfirstpackage-create.sql:15: NOTICE:  CREATE TABLE / PRIMARY KEY will create implicit index 'mfp_notes_pkey' for table 'mfp_notes'
 psql:myfirstpackage-create.sql:15: NOTICE:  CREATE TABLE will create implicit trigger(s) for FOREIGN KEY check(s)
  content_type__create_type
 ---------------------------
                          0
 (1 row)
 
- content_folder__register_content_type
----------------------------------------
-                                     0
-(1 row)
-
 [service0 postgresql]$

If there are errors, use them to debug the sql file and try again. If there are errors in the database table creation, you may need to run the drop script to drop the table so that you can recreate it. The drop script will probably have errors since some of the things it's trying to drop may be missing. They can be ignored.

Once you get the same output as shown above, test the drop script:

[service0 postgresql]$ psql -f myfirstpackage-drop.sql
- content_folder__unregister_content_type
------------------------------------------
-                                       0
-(1 row)
 
  content_type__drop_type
 -------------------------
                        0
 (1 row)
 
-[service0 postgresql]$

Once both scripts are working without errors, run the create script one last time and proceed.

[service0 postgresql]$ psql -f myfirstpackage-create.sql
View comments on this page at openacs.org
+[service0 postgresql]$

Once both scripts are working without errors, run the create script one last time and proceed.

[service0 postgresql]$ psql -f myfirstpackage-create.sql
View comments on this page at openacs.org