-
Notifications
You must be signed in to change notification settings - Fork 36
odbc: support for php 8.4 changes #47
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Draft
DanCld
wants to merge
8
commits into
pear:trunk
Choose a base branch
from
DanCld:odbc-php84
base: trunk
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Changes from all commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
afa6661
Fix: PHP 8.1 pgsql change of return values
DanCld 647cdab
Fixing a bug in tableInfo() method
DanCld 44e9321
PR change as per comments received
DanCld 83497f4
Errant space removed as per comment
DanCld 36a5618
Added a catch-all statement to _resultId(...)
DanCld e32dc32
Semicolon added as per comment
DanCld a58bca0
Merge branch 'pear:trunk' into trunk
DanCld c500dc9
possible odbc fix for php 8.4
DanCld File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -220,7 +220,7 @@ function connect($dsn, $persistent = false) | |
| $dsn['cursor']); | ||
| } | ||
|
|
||
| if (!is_resource($this->connection)) { | ||
| if (!is_resource($this->connection) && !is_a($result, 'Odbc\Connection')) { | ||
| return $this->raiseError(DB_ERROR_CONNECT_FAILED, | ||
| null, null, null, | ||
| $this->errorNative()); | ||
|
|
@@ -366,7 +366,7 @@ function fetchInto($result, &$arr, $fetchmode, $rownum = null) | |
| */ | ||
| function freeResult($result) | ||
| { | ||
| return is_resource($result) ? odbc_free_result($result) : false; | ||
| return (is_resource($result) || is_a($result, 'Odbc\Result')) ? odbc_free_result($result) : false; | ||
| } | ||
|
|
||
| // }}} | ||
|
|
@@ -691,7 +691,7 @@ function odbcRaiseError($errno = null) | |
| */ | ||
| function errorNative() | ||
| { | ||
| if (!is_resource($this->connection)) { | ||
| if (!is_resource($this->connection) && !is_a($result, 'Odbc\Connection')) { | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Should be |
||
| return @odbc_error() . ' ' . @odbc_errormsg(); | ||
| } | ||
| return @odbc_error($this->connection) . ' ' . @odbc_errormsg($this->connection); | ||
|
|
@@ -745,7 +745,7 @@ function tableInfo($result, $mode = null) | |
| $got_string = false; | ||
| } | ||
|
|
||
| if (!is_resource($id)) { | ||
| if (!is_resource($id) && !is_a($result, 'Odbc\Result')) { | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Should be |
||
| return $this->odbcRaiseError(DB_ERROR_NEED_MORE_DATA); | ||
| } | ||
|
|
||
|
|
||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should be
$this->connectionrather than$result.