问题标签 [interbase-2009]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
database - How to hide stored procedures and triggers code from users other than SYSDBA in Interbase?
I found some information about the encryption and embedded password features in Interbase 2009, but it does not prevent database users to see the source code. Is it possible to hide the stored procedures and triggers codes from all user including SYSDBA too? If not at least I can hide it from some users.
interbase - 在 interbase XE7 中执行查询时出现异常
我已将 Borland interbase 7 迁移到 embarcadero interbase XE7 数据库。我已经使用 IBConsole 备份文件 *.ibk 并恢复到 interbase XE7 并成功恢复了 interbase XE7 数据库上的数据库但是当我尝试在 IBconsole Interactive sql 窗口上执行简单查询时,它收到以下错误消息但是当尝试不同的表时它成功执行查询。
SQL
错误信息 :
我是 interbase 数据库的新手,所以请帮助我们为什么会收到上述错误消息和解决方案。
问候的萨米克
odbc - 使用 ODBC 连接到 Firebird
我已经下载了Firebird_ODBC_2.0.4.155_Win32
。我还ODBC
从控制面板启动了数据源。现在我在“驱动程序”选项卡中找不到 Firebird/InterBase 驱动程序。我确定我安装了 Firebird。为什么?
database - 如何使用 blob 字段批量插入 Interbase
我必须使用 Interbase 数据库中的 blob 字段一次插入 2000 多条记录。如果我们对每个插入执行查询,就会出现性能问题。
我发现批量插入是解决方案。但是,我必须先准备所有查询才能运行插入查询的脚本。我的问题是,如何使用 blob 字段准备查询脚本?
如果有其他解决方案可以提高性能,请建议我。
java - 十进制输入然后二进制输入(不使用 Integer.parseInt)
我是一年级计算机科学专业的学生。这个问题已经被问过很多次了,我已经经历了这些。但我仍然无法在当前代码中找到需要修复的地方。我已经编写了将十进制转换为二进制的代码。以下是示例输入和输出。
样本输入
样本输出
我理解概念和二进制转换。但是,我无法输入指定数字的二进制值并且得到不正确的输出。我不能使用 Integer.parseInt。下面是从二进制到十进制的粗略转换练习。
代码
谢谢!
sql - 删除明细表中的记录后更新主表的过程出错
在 Interbase 2009 db 中,我有主表和详细表(Tmaster、Tdetails)。
大师:
master_id(pk) | 文档摘要 | DocSummaDol |
---|
详情:
det_id | master_id(fk) | 价格1,价格2 | qnt |
---|
在我删除/更新子表(Tdetails)中的记录后,程序必须更新主表(Tmaster)中的总和。
我有两个问题:
- 如果过程包含此 if 子句:
它返回此错误:
列不属于引用的表。动态 SQL 错误。SQL 错误代码 = -206。列未知。
- 如果没有 if 子句,我有第二个问题:程序运行速度很慢。13小时后结束:)
有时在 IBExpert 我会收到此错误:
发生算术溢出或被零除。算术异常、数值溢出或字符串截断。SQLCODE:-802 GDSCODE:335544321
我的 Psql 代码有什么问题?