Skip to content

Commit

Permalink
不要なエラーハンドリングをコード例より削除 (#137)
Browse files Browse the repository at this point in the history
  • Loading branch information
KentarouTakeda authored Oct 31, 2024
1 parent 7baee87 commit 4ac7da9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion reference/pgsql/functions/pg-fetch-result.xml
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@
<programlisting role="php">
<![CDATA[
<?php
$db = pg_connect("dbname=users user=me") || die();
$db = pg_connect("dbname=users user=me");
$res = pg_query($db, "SELECT 1 UNION ALL SELECT 2");
Expand Down
2 changes: 1 addition & 1 deletion reference/pgsql/functions/pg-free-result.xml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@
<programlisting role="php">
<![CDATA[
<?php
$db = pg_connect("dbname=users user=me") || die();
$db = pg_connect("dbname=users user=me");
$res = pg_query($db, "SELECT 1 UNION ALL SELECT 2");
Expand Down

0 comments on commit 4ac7da9

Please sign in to comment.