tony2001                Thu Dec  8 17:05:46 2005 EDT

  Modified files:              
    /php-src/ext/oci8   oci8_statement.c 
  Log:
  improve error message
  
  
http://cvs.php.net/diff.php/php-src/ext/oci8/oci8_statement.c?r1=1.11&r2=1.12&ty=u
Index: php-src/ext/oci8/oci8_statement.c
diff -u php-src/ext/oci8/oci8_statement.c:1.11 
php-src/ext/oci8/oci8_statement.c:1.12
--- php-src/ext/oci8/oci8_statement.c:1.11      Thu Dec  8 16:22:38 2005
+++ php-src/ext/oci8/oci8_statement.c   Thu Dec  8 17:05:44 2005
@@ -25,7 +25,7 @@
    +----------------------------------------------------------------------+
 */
 
-/* $Id: oci8_statement.c,v 1.11 2005/12/08 21:22:38 tony2001 Exp $ */
+/* $Id: oci8_statement.c,v 1.12 2005/12/08 22:05:44 tony2001 Exp $ */
 
 
 #ifdef HAVE_CONFIG_H
@@ -1121,7 +1121,7 @@
                        bind = php_oci_bind_array_helper_date(var, 
max_table_length, statement->connection TSRMLS_CC);
                        break;
                default:
-                       php_error_docref(NULL TSRMLS_CC, E_WARNING, "Not 
supported bind type (%ld)", type);
+                       php_error_docref(NULL TSRMLS_CC, E_WARNING, "Unknown or 
unsupported datatype given: %ld", type);
                        return 1;
                        break;
        }

-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to