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
每个人都需要一台速度更快、更稳定的 PC。随着时间的推移,垃圾文件、旧注册表数据和不必要的后台进程会占用资源并降低性能。幸运的是,许多工具可以让 Windows 保持平稳运行。
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号