Index: trunk/psLib/src/dataIO/psDB.c
===================================================================
--- trunk/psLib/src/dataIO/psDB.c	(revision 3866)
+++ trunk/psLib/src/dataIO/psDB.c	(revision 3957)
@@ -12,6 +12,6 @@
  *  @author Joshua Hoblitt
  *
- *  @version $Revision: 1.16 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2005-05-06 18:15:25 $
+ *  @version $Revision: 1.17 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2005-05-18 00:55:36 $
  *
  *  Copyright 2005 Joshua Hoblitt, University of Hawaii
@@ -43,5 +43,4 @@
 
 // database utility functions
-static bool     psDBRunQuery(psDB *dbh, const char *query);
 static inline bool psDBPackRow(MYSQL_BIND *bind, psMetadata *values, psU32 paramCount);
 
@@ -136,5 +135,5 @@
 
     // the MySQL C API notes that mysql_create_db() is deprecated
-    status = psDBRunQuery(dbh, query);
+    status = p_psDBRunQuery(dbh, query);
     if (!status) {
         psError(PS_ERR_UNKNOWN, false, "Failed to create new database.");
@@ -165,5 +164,5 @@
 
     // the MySQL C API notes that mysql_drop_db() is deprecated
-    status = psDBRunQuery(dbh, query);
+    status = p_psDBRunQuery(dbh, query);
     if (!status) {
         psError(PS_ERR_UNKNOWN, false, "Failed to drop database.");
@@ -187,5 +186,5 @@
     }
 
-    status = psDBRunQuery(dbh, query);
+    status = p_psDBRunQuery(dbh, query);
     if (!status) {
         psError(PS_ERR_UNKNOWN, false, "Failed to create table.");
@@ -204,5 +203,5 @@
     psStringAppend(&query, "DROP TABLE %s", tableName);
 
-    status = psDBRunQuery(dbh, query);
+    status = p_psDBRunQuery(dbh, query);
     if (!status) {
         psError(PS_ERR_UNKNOWN, false, "Failed to drop table.");
@@ -231,5 +230,5 @@
     }
 
-    if (!psDBRunQuery(dbh, query)) {
+    if (!p_psDBRunQuery(dbh, query)) {
         psError(PS_ERR_UNKNOWN, false, "Query execution failed.");
         psFree(query);
@@ -388,5 +387,5 @@
     }
 
-    if (!psDBRunQuery(dbh, query)) {
+    if (!p_psDBRunQuery(dbh, query)) {
         psError(PS_ERR_UNKNOWN, false, "Query execution failed.");
 
@@ -724,5 +723,5 @@
     }
 
-    if (!psDBRunQuery(dbh, query)) {
+    if (!p_psDBRunQuery(dbh, query)) {
         psError(PS_ERR_UNKNOWN, false, "Delete failed.");
 
@@ -750,5 +749,5 @@
 /*****************************************************************************/
 
-static bool psDBRunQuery(psDB *dbh, const char *query)
+bool p_psDBRunQuery(psDB *dbh, const char *query)
 {
     if (mysql_real_query(dbh->mysql, query, (unsigned long)strlen(query)) !=0) {
