Index: trunk/psLib/src/db/psDB.h
===================================================================
--- trunk/psLib/src/db/psDB.h	(revision 3598)
+++ trunk/psLib/src/db/psDB.h	(revision 3957)
@@ -10,6 +10,6 @@
  *  @author Joshua Hoblitt
  *
- *  @version $Revision: 1.5 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2005-03-31 23:01:46 $
+ *  @version $Revision: 1.6 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2005-05-18 00:55:36 $
  *
  *  Copyright 2005 Joshua Hoblitt, University of Hawaii
@@ -81,4 +81,17 @@
     psDB *dbh,                          ///< Database handle
     const char *dbname                  ///< Database namespace
+);
+
+/** Executes a SQL query
+ *
+ * This function will execute a string as a raw SQL query.  No additional
+ * processing of the string or abstraction of the underlying database's SQL
+ * dialect is provided.  Caveat emptor.
+ *
+ * @return true on success
+ */
+bool p_psDBRunQuery(
+    psDB *dbh,                          ///< Database handle
+    const char *query                   ///< SQL string to execute
 );
 
