|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2000-07-30 14:33 UTC] zak@php.net
[2000-07-30 14:34 UTC] zak@php.net
[2000-07-30 17:21 UTC] daniel dot burckhardt at sur-gmbh dot ch
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Tue Dec 16 06:00:02 2025 UTC |
-> PHP has encountered an Access Violation at 0136AA24 shows up in about 50% of the cases if i'm using a class which looks like the following: class RecordSQL extends Record { [snip] function fetch($args) { [snip] while (list($name, $thisfield) = each($this->fields)) { $value = $dbconn->Record[$name]; $type = $thisfield->get('datatype'); $value = $this->sql_decode($type), $value); $this->set_value($name, $value); } [snip] } } if i uncomment the line // $value = $this->sql_decode($type, $value); -> runs ok if you want the full source code, please drop me a mail