2

我有一张桌子。这是我桌子的脚本:-

CREATE TABLE news
(
  news_id bigint NOT NULL DEFAULT nextval('news_seq'::regclass),
  title character varying(1024),
  description character varying(2024),
  CONSTRAINT pk_news_newsid PRIMARY KEY (news_id)  
)
WITH (
  OIDS=FALSE
);
ALTER TABLE news OWNER TO viewer;

现在我想 news_id在表中插入新记录时自动生成。

这是用于插入新闻的 C# 函数:-

 public Int64 AddNews(News newNews)
    {
        string query = string.Empty;
        try
        {
            string dateFormat = ConfigurationManager.AppSettings["DateFormat"];
            NpgsqlParameter[] parm = new NpgsqlParameter[2];
            parm[0] = new NpgsqlParameter("title", newNews.NewsTitle);
            parm[1] = new NpgsqlParameter("des", newNews.NewsDescription);

            query = @" INSERT INTO   news(title, description)
                            VALUES   (:title, :des) 
                         Returning   news_id";

            int id=NpgSqlHelper.ExecuteNonQuery(connectionString, CommandType.Text, query, parm);

            return id;
        }
        catch (Exception ex)
        {
            throw new Exception(ex.Message);
        }
    }

On executing this function I always get the -1 value

提前致谢

在 pgAdmin 上执行以下查询时会给出正确的结果:

INSERT INTO news(title, description)
    VALUES ('title','description')
    Returning news_id
4

2 回答 2

3

您是否尝试过NpgsqlCommand.ExecuteScalar或您正在使用的 API 的等效项?

于 2013-01-25T12:04:39.453 回答
1

我看到了两种可能性:

1) -1 值表示您遇到回滚情况。执行该函数时,检查表:记录是成功插入还是其他情况导致回滚?如果是这样,找出导致回滚的原因(参见#2)。

2) 如果您正在运行非插入语句,也可以返回 -1 值。我知道您正在运行插入,但是该表上的任何触发器呢?您是否在触发器中执行任何 Select 语句?

希望这可以帮助。

于 2013-01-25T12:10:47.130 回答