PostgreSql 字段或表名称

Postgresql对表名、字段名都是区分大小写的。在图形化界面可以正常新建。

为了兼容其他的数据库程序代码的编写,推荐使用小写加_的方式,例如:employees_post

表明或者字段名包含大写字母,示例:

CREATE TABLE public."Test"
(
"Id" character varying(16)
)
WITH (
OIDS = FALSE
)
;

当.net 使用npgsql连接Postgresql数据库的时候

using (NpgsqlConnection conn = new NpgsqlConnection("Server=localhost;Port=5432;User Id=postgres;Password=postgres;Database=jdsun;SSL=False;Pooling=True;CommandTimeout=30;"))
{
using (NpgsqlCommand cmd = new NpgsqlCommand())
{
StringBuilder sbzzm = new StringBuilder();
sbzzm.Append("INSERT INTO \"Test\"(");
sbzzm.Append("\"ID\")"); //这里必须使用\"否则会返回找不到字段的错误
sbzzm.Append(" VALUES(@ID)");

NpgsqlParameter param = new NpgsqlParameter("@ID",NpgsqlTypes.NpgsqlDbType.Varchar,16);

param.Value = "测试";

if (conn.State != ConnectionState.Open) conn.Open();

cmd.Connection = conn;
cmd.CommandText = sbzzm.ToString();

cmd.CommandType = CommandType.Text;

cmd.Parameters.Add(param);

int val = cmd.ExecuteNonQuery();
cmd.Parameters.Clear();
}
}

都是小写字母

CREATE TABLE public.test
(
id character varying(16)
)
WITH (
OIDS = FALSE
)
;

参照上面的代码,去掉\"即可。

相关文章

来源:http://www.postgres.cn/docs/11/ 4.1.1. 标识符和关键词 SQL标识符和关键词必须以一个...
来源:http://www.postgres.cn/docs/11/ 8.1. 数字类型 数字类型由2、4或8字节的整数以及4或8...
来源:http://www.postgres.cn/docs/11/ 5.1. 表基础 SQL并不保证表中行的顺序。当一个表被读...
来源:http://www.postgres.cn/docs/11/ 6.4. 从修改的行中返回数据 有时在修改行的操作过程中...
来源:http://www.postgres.cn/docs/11/ 13.2.1. 读已提交隔离级别 读已提交是PostgreSQL中的...
来源:http://www.postgres.cn/docs/11/ 9.7. 模式匹配 PostgreSQL提供了三种独立的实现模式匹...