Jump to content

Responding to specific SQL errors


NotionCommotion

Recommended Posts

Consider the following.  Is it possible to do so database vendor agnostic?

 

<?php


function testException($pdo,$sql,$data) {
    try {
        $stmt=$pdo->prepare($sql);
        $stmt->execute($data);
        echo("NO ERROR FOR $sql\n");
    }
    catch (PDOException $e) {
        $error = $stmt->errorInfo();
        echo("SQL: $sql\n");
        if($error[0]==23000 && $error[1]==1062) {
            echo("Do something for: SQLSTATE[23000]: Integrity constraint violation: 1062 Duplicate entry\n\n");
        }
        elseif($error[0]==23000 && $error[1]==1451) {
            echo("Do something for: SQLSTATESQLSTATE[23000]: Integrity constraint violation: 1451 foreign key constraint fails\n\n");
        }
        else {
            throw $e;
        }
    }
}


$db=parse_ini_file('../../config.ini',true)['mysql'];
$pdo = new \PDO("mysql:host={$db['host']};dbname={$db['dbname']};charset={$db['charset']}",$db['username'],$db['password'],array(\PDO::ATTR_EMULATE_PREPARES=>false,\PDO::MYSQL_ATTR_USE_BUFFERED_QUERY=>true,\PDO::ATTR_ERRMODE=>\PDO::ERRMODE_EXCEPTION,\PDO::ATTR_DEFAULT_FETCH_MODE=>\PDO::FETCH_OBJ)); 


$sql='INSERT INTO sources_type(type,name) VALUES(?,?)';
$data=['client','my name'];
testException($pdo,$sql,$data);


$sql='DELETE FROM sources_type WHERE type=?';
$data=['client'];
testException($pdo,$sql,$data);

 

Link to comment
Share on other sites

The first number is a standardized error code that will probably only give you a general explanation as to what the problem was. Compare MySQL's error codes with PostgreSQL's and you'll see MySQL uses SQLSTATE 23000 for no less than fourteen distinct error conditions while PostgreSQL uses just the one.

 

The second number is vendor-specific.

 

 

So no.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.