发布网友 发布时间:2022-05-06 13:52
共2个回答
懂视网 时间:2022-05-06 18:13
Firebird Database firebird作为一款优秀的嵌入式(之一功能),用于桌面开发最合适不过了。之前也用过SQLITE做过一些小工具,但是在安全性方面表现不佳,而且不支持存储过程等特性,经过比较最终转向firebird,整理了下常用的命令语句和SQL。 用户管理 gsec
firebird作为一款优秀的嵌入式(之一功能),用于桌面开发最合适不过了。之前也用过SQLITE做过一些小工具,但是在安全性方面表现不佳,而且不支持存储过程等特性,经过比较最终转向firebird,整理了下常用的命令语句和SQL。
gsec -user sysdba -password masterkey modify SYSDBA -pw gtlions add gtlions -pw gtlions quit
isql create database 'gtlions.fdb' user 'SYSDBA' password 'gtlions' default character set UTF8; create database 'gtlions1.fdb' user 'gtlions' password 'G1!tlion' default character set GBK; exit;
isql gtlions.fdb -user sysdba -password gtlions isql gtlions.fdb -u gtlions -p 'G1!tlion' isql gtlions1.fdb -u gtlions -p gtlions
sudo launchctl unload /Library/LaunchDaemons/org.firebird.gds.plist sudo launchctl unload /System/Library/LaunchAgents/com.apple.bird.plist
vi script_for_remove_firebird.sh #!/bin/sh echo "Clean Services" echo "Clean User" dscl localhost -delete /Local/Default/Users/firebird echo "Clean Group" dscl localhost -delete /Local/Default/Groups/firebird if [ -f "/Library/StartupItems/Firebird" ]; then echo "Remove SuperServer StartupItem" rm -fr /Library/StartupItems/Firebird fi if [ -f "/Library/LaunchDaemons/org.firebird.gds.plist" ]; then echo "Remove Launchd" launchctl unload /Library/LaunchDaemons/org.firebird.gds.plist rm /Library/LaunchDaemons/org.firebird.gds.plist fi echo "Remove Framework" rm -fr /Library/Frameworks/Firebird.framework echo "Remove Receipt" rm -fr /Library/Receipts/Firebird*.pkg sudo launchctl unload /Library/LaunchDaemons/org.firebird.gds.plist
热心网友 时间:2022-05-06 15:21
我想这个可以帮你I have application that uses Firebird database on remote server. When I copy fbclient.dll and gds32.dll 我在远程服务器用火鸟数据库运行程序,当我复制 fbclient.dll 和 gds32.dll (from Firebird distribution) into application folder I get an error "InterBase library gds32.dll not found (从火鸟发布区)到运用程序文件夹时,出现错误“InterBase数据库gds32.dll 未在 in the path. Please install InterBase to use this functionality". When I delete that files and copy 路径中发现,请安装InterBase数据库来使用此功能”。当我删除那个文件并且只only gds32.dll (from Interbase distribution) file, the application is working.