Ask a Question related to PHP Notes, Design and Development.
-
didou@php.net #1
note 1947 modified in function.sybase-fetch-field by didou
The 'type' field contains (roughly) the datatype of the source column. Types returned are:
'type' Sybase Type
------- --------------------------
string CHAR, VARCHAR, TEXT
image IMAGE
blob BINARY, VARBINARY
bit BIT
int TINYINT, SMALLINT, INT
real REAL, FLOAT, NUMERIC, DECIMAL
money MONEY
datetime DATETIME, SMALLDATETIME
--was--
There is one field missing from the description above that seems to be in there (at least as of php-3.0.12).
The 'type' field contains (roughly) the datatype of the source column. Types returned are:
<PRE>
'type' Sybase Type
------- --------------------------
string CHAR, VARCHAR, TEXT
image IMAGE
blob BINARY, VARBINARY
bit BIT
int TINYINT, SMALLINT, INT
real REAL, FLOAT, NUMERIC, DECIMAL
money MONEY
datetime DATETIME, SMALLDATETIME
</PRE>
[url]http://www.php.net/manual/en/function.sybase-fetch-field.php[/url]
didou@php.net Guest
-
note 33826 modified in function.strip-tags by didou
To eminate the script tags found in html, don't use the preg_replace approach. The .* can include </script> when there are multiple script tags, and... -
note 32027 deleted from function.dba-fetch by didou
Note Submitter: B.D. ---- The parameters for dba_fetch seem to be incorrect. dba_fetch($key) doesn't work. dba_fetch($key,0,$id) doesn't... -
note 19763 modified in function.is-a by didou
php implementation to keep us happy for now if (!function_exists('is_a')) { function is_a($class, $match) { if (empty($class)) { return false;... -
note 1936 deleted from function.mssql-fetch-field by didou
Note Submitter: kimg@cogna.com ---- There is an additional property of this object: type - the type of the column -
note 33574 modified in function.ftp-chmod by didou
if ftp_chmod doesn't work, jusdt try this : $ftp_ip="ip_of_my_serv_ftp"; $ftp_login="my_login"; $ftp_pass="my_pass"; $ftp_file="/www/motd.txt";...



Reply With Quote

