summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--adodb.inc.php13
-rw-r--r--drivers/adodb-sqlite.inc.php5
-rw-r--r--drivers/adodb-sqlite3.inc.php5
3 files changed, 10 insertions, 13 deletions
diff --git a/adodb.inc.php b/adodb.inc.php
index d367952d..9eb1089f 100644
--- a/adodb.inc.php
+++ b/adodb.inc.php
@@ -88,11 +88,10 @@ if (!defined('_ADODB_LAYER')) {
// ********************************************************
- /*
- * Defines constants for returned values from the charmax and textmax
- * methods. If not specifically defined in the driver, methods return
- * the notset values
- */
+ /**
+ * Constants for returned values from the charMax and textMax methods.
+ * If not specifically defined in the driver, methods return the NOTSET value.
+ */
define ('ADODB_STRINGMAX_NOTSET', -1);
define ('ADODB_STRINGMAX_NOLIMIT',-2);
@@ -3029,7 +3028,7 @@ http://www.stanford.edu/dept/itss/docs/oracle/10g/server.101/b10759/statements_1
return $rs;
}
- /*
+ /**
* Returns the maximum size of a MetaType C field. If the method
* is not defined in the driver returns ADODB_STRINGMAX_NOTSET
*
@@ -3040,7 +3039,7 @@ http://www.stanford.edu/dept/itss/docs/oracle/10g/server.101/b10759/statements_1
return ADODB_STRINGMAX_NOTSET;
}
- /*
+ /**
* Returns the maximum size of a MetaType X field. If the method
* is not defined in the driver returns ADODB_STRINGMAX_NOTSET
*
diff --git a/drivers/adodb-sqlite.inc.php b/drivers/adodb-sqlite.inc.php
index 94af003d..12604a1f 100644
--- a/drivers/adodb-sqlite.inc.php
+++ b/drivers/adodb-sqlite.inc.php
@@ -349,7 +349,7 @@ class ADODB_sqlite extends ADOConnection {
return $indexes;
}
- /*
+ /**
* Returns the maximum size of a MetaType C field. Because of the
* database design, sqlite places no limits on the size of data inserted
*
@@ -360,11 +360,10 @@ class ADODB_sqlite extends ADOConnection {
return ADODB_STRINGMAX_NOLIMIT;
}
- /*
+ /**
* Returns the maximum size of a MetaType X field. Because of the
* database design, sqlite places no limits on the size of data inserted
*
- *
* @return int
*/
function textMax()
diff --git a/drivers/adodb-sqlite3.inc.php b/drivers/adodb-sqlite3.inc.php
index 82731a7f..ead56546 100644
--- a/drivers/adodb-sqlite3.inc.php
+++ b/drivers/adodb-sqlite3.inc.php
@@ -386,7 +386,7 @@ class ADODB_sqlite3 extends ADOConnection {
return $indexes;
}
- /*
+ /**
* Returns the maximum size of a MetaType C field. Because of the
* database design, sqlite places no limits on the size of data inserted
*
@@ -397,11 +397,10 @@ class ADODB_sqlite3 extends ADOConnection {
return ADODB_STRINGMAX_NOLIMIT;
}
- /*
+ /**
* Returns the maximum size of a MetaType X field. Because of the
* database design, sqlite places no limits on the size of data inserted
*
- *
* @return int
*/
function textMax()