zoukankan      html  css  js  c++  java
  • godaddy空间的sql server数据库没办法insert中文

    原来的代码:

    use string007
    
    if exists (select 1
                from  sysobjects
               where  id = object_id('K_V_TEST')
                and   type = 'U')
       drop table K_V_TEST
    go
    
    create table K_V_TEST (
        temp                varchar(100)        not null,
       autoid               int                  identity,
       key_                 nvarchar(400)         not null,
       value_               nvarchar(200)         not null,
       constraint PK_K_V_TEST primary key (autoid)
    )
    go
    
    
    insert into k_v_test (temp,key_,value_) values('temp','key','value')
    insert into k_v_test (temp,key_,value_) values('temp','key','value')
    insert into k_v_test (temp,key_,value_) values('temp','年龄','30')
    insert into k_v_test (temp,key_,value_) values('temp','性别','')
    insert into k_v_test (temp,key_,value_) values('temp','生日','1986-')
    insert into k_v_test (temp,key_,value_) values('temp','姓名','张某')
    insert into k_v_test (temp,key_,value_) values('temp','手机','18888888888')
    go
    
    
    select * from k_v_test
    然后执行下看到的中文都会变成'?'。。。。
    
    然后搜了下...
    
    说是在insert的时候,当字符是中文的时候在前面加上'N'就可以了...
    
    果然...
    
    例如:
    
    insert into k_v_test (temp,key_,value_) values('temp',N'年龄','30')

    。。。。

    现在的代码:

    use string007
    
    if exists (select 1
                from  sysobjects
               where  id = object_id('K_V_TEST')
                and   type = 'U')
       drop table K_V_TEST
    go
    
    create table K_V_TEST (
        temp                varchar(100)        not null,
       autoid               int                  identity,
       key_                 nvarchar(400)         not null,
       value_               nvarchar(200)         not null,
       constraint PK_K_V_TEST primary key (autoid)
    )
    go
    
    
    insert into k_v_test (temp,key_,value_) values('temp','key','value')
    insert into k_v_test (temp,key_,value_) values('temp',N'年龄','30')
    insert into k_v_test (temp,key_,value_) values('temp',N'性别',N'')
    insert into k_v_test (temp,key_,value_) values('temp',N'生日','1986-')
    insert into k_v_test (temp,key_,value_) values('temp',N'姓名',N'张某')
    insert into k_v_test (temp,key_,value_) values('temp',N'手机','18888888888')
    go
    
    
    select * from k_v_test
  • 相关阅读:
    最好的在线打字练习网站
    input 的 type 等于 file
    windows 删除文件或文件夹
    nvm 管理 node 版本
    github 的 fork 取消功能
    window cmd 命令行下创建文件夹和文件
    17_10_11 Redis 指令
    17_10_11 Mac 上的brew 安装指令
    17_10_11 运算符&,&&,>> 和 >>>
    17_10_10 乱码问题总结
  • 原文地址:https://www.cnblogs.com/love-zf/p/5623278.html
Copyright © 2011-2022 走看看