Index: trunk/psLib/src/db/psDB.h
===================================================================
--- trunk/psLib/src/db/psDB.h	(revision 4312)
+++ trunk/psLib/src/db/psDB.h	(revision 4342)
@@ -10,6 +10,6 @@
  *  @author Joshua Hoblitt
  *
- *  @version $Revision: 1.8 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2005-06-18 00:53:32 $
+ *  @version $Revision: 1.9 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2005-06-22 02:05:41 $
  *
  *  Copyright 2005 Joshua Hoblitt, University of Hawaii
@@ -93,5 +93,5 @@
 bool p_psDBRunQuery(
     psDB *dbh,                          ///< Database handle
-    const char *query                   ///< SQL string to execute
+    const char *format                  ///< SQL string to execute
 );
 
@@ -119,5 +119,5 @@
     psDB *dbh,                          ///< Database handle
     const char *tableName,              ///< Table name
-    psMetadata *md                      ///< Column names, types, and indexes
+    const psMetadata *md                ///< Column names, types, and indexes
 );
 
@@ -179,5 +179,5 @@
     psDB *dbh,                          ///< Database handle
     const char *tableName,              ///< Table name
-    psMetadata *where,            ///< Row match criteria
+    const psMetadata *where,            ///< Row match criteria
     unsigned long long limit            ///< Maximum number of elements to return
 );
@@ -197,5 +197,5 @@
     psDB *dbh,                          ///< Database handle
     const char *tableName,              ///< Table name
-    psMetadata *row                     ///< Row description
+    const psMetadata *row               ///< Row description
 );
 
@@ -254,6 +254,6 @@
     psDB *dbh,                          ///< Database handle
     const char *tableName,              ///< Table name
-    psMetadata *where,                  ///< Row match criteria
-    psMetadata *values                  ///< new field values
+    const psMetadata *where,            ///< Row match criteria
+    const psMetadata *values            ///< new field values
 );
 
@@ -271,5 +271,5 @@
     psDB *dbh,                          ///< Database handle
     const char *tableName,             ///< Table name
-    psMetadata *where                  ///< Row match criteria
+    const psMetadata *where                  ///< Row match criteria
 );
 
