zoukankan      html  css  js  c++  java
  • Firebird 问题总结

    1. 连接字符串问题(“initial catalog” 的内容必须是绝对路径,不能是相对路径)

    01:  <connectionStrings>
    02:      <add providerName ="FirebirdSql.Data.FirebirdClient" name="NumericDB" connectionString="data source=localhost;initial catalog=NULLABLETYPESDB.GDB;"/>
    03:    </connectionStrings>
    04:    <system.data>
    05:      <DbProviderFactories>
    06:        <clear/>
    07:        <add name="FirebirdSql.Data.FirebirdClient"
    08:             invariant="FirebirdSql.Data.FirebirdClient"
    09:             description="ddd"
    10:             type="FirebirdSql.Data.FirebirdClient.FirebirdClientFactory,FirebirdSql.Data.FirebirdClient"/>
    11:      </DbProviderFactories>
    12:  
    13:    </system.data>
    14:  

    2. 数据库区分大小写(表名、列名严格区分大小写)

    3.  数据库中没有自动增长列,创建自动增长列需要在Generactors 下,建立一个生成器,并设置初始值为0或1,或其它数字,然后创建触发器 

           例如:有个表A,表A中有个字段Id,我需要设置该字段为自动增长列实现步骤如下:
               (1):在Generactors 下,建立一个生成器,并设置初始值为0或1
                     create generator gen_A
                     set generator gen_A to 0
                     ☆:注意这两个语句不能同时执行,需单个执行
               (2)创建触发器:点Triggers
                    reate trigger trig_A_Id for A
                     active before insert position 0
                    as
                    begin
                       new.id=gen_id(gen_A,1);
                    end

    4. Firebird分页

    select first 10 templateid,code,name from template ;
    select first 10 skip 10 templateid,code,name from template ;
    select * from shop rows 1 to 10; --firebird2.0支持这种写法

  • 相关阅读:
    mysql int类型 int(11) 和int(2)区别
    mysql 用户 登陆 权限相关
    【转】ext4+delalloc造成单次写延迟增加的分析
    write 系统调用耗时长的原因
    【转】通过blktrace, debugfs分析磁盘IO
    win7 wifi热点
    【SystemTap】 Linux下安装使用SystemTap源码安装SystemTap
    pdflush进程介绍与优化【转】
    How to find per-process I/O statistics on Linux
    oom_killer
  • 原文地址:https://www.cnblogs.com/netcasewqs/p/2716408.html
Copyright © 2011-2022 走看看