I'm using cakePHP and adodb (cake_1.0.1.2708.tar.gz , adodb481.tgz.gz)
and I query this sql in my.php as following:
my.php
-------------------------------------------------
class MyModel extends AppModel {
var $name = 'My';
var $useTable = false;
var $useDbConfig = 'sybase';
function view() {
$sql = "SELECT name FROM sysobjects";
$ret = $this->findBySql($sql);
return $ret;
}
}
-------------------------------------------------
When I run web browser
Then i've got an alert message box
"CGI / FastCGI has encountered a problem and needs to close. We are
sorry for the inconvenience."
and close message box
web browser have display:
CGI Error
The specified CGI application misbehaved by not returning a complete
set of HTTP headers. The headers it did return are:
Please tell me the right way to use adodb-sybase
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Cake
PHP" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/cake-php
-~----------~----~----~----~------~----~------~--~---