Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
awit-frameworks
awit-perl-toolkit
Commits
1fff4b97
Commit
1fff4b97
authored
Apr 17, 2017
by
Nigel Kukard
Browse files
Fixed the parameters passed to DBILayer
parent
39a0f54c
Changes
1
Hide whitespace changes
Inline
Side-by-side
lib/AWITPT/DB/DBLayer.pm
View file @
1fff4b97
...
...
@@ -386,7 +386,7 @@ sub DBLastInsertID
}
my
$res
;
if
(
!
(
$res
=
$dbh
->
lastInsertID
(
undef
,
undef
,
$table
,
$column
)))
{
if
(
!
(
$res
=
$dbh
->
lastInsertID
(
$table
,
$column
)))
{
_error
("
Error getting last inserted id:
"
.
$dbh
->
error
());
return
;
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment