
破解方法
1、打开软件,点击许可证,选择
2、然后输入注册机中的注册码,点击确定完成破解。

功能特色
整合支持多种数据库平台,单一文件方便携带与使用支持语法高亮显示(Syntax Highlighting)
数据库自动化处理(Automatically): 无须通过SQL命令或外部执行
密码保护(Protect Database): Access 97-2003/Access 2007/SQL Server CE/SQLite
自动新建(Create Database): Access 2000/Access 2007/Firebird/SQL Server CE/SQLite
自动压缩(Shrink Database): Access 97-2003/Access 2007/Firebird/MySQL(MyISAM)/SQL Server/SQL Server CE/SQLite/PostgreSQL
备份还原(Backup/Restore Database): MySQL/SQL Server/PostgreSQL
支持代码自动生成(Code Generation): Access/Firebird/MySQL/Oracle/PostgreSQL/SQL Server/SQL Server CE/SQLite
支持数据库服务管理(Service Manager): Firebird/MySQL/PostgreSQL/SQL Server
支持多页签查询(Multiple Query Tab), 多页签结果显示(Multiple Result)
支持范例文件管理(SQL Example Manager)
支持拖放数据库加载(DragDrop Database)
结果输出(Export to CSV/XML/TXT)
多国语言显示(Multiple Language): 预设中英文,并可自行扩充
数据库带物理路径
/*功能:取数据库物理文件路径
创建人:baronyang
创建时间:2009-6-29
适用:SQL2005
*/
Alter function Fn_Ex_GetDBPath
(@DBName nvarchar(255),--数据库名
@GetType tinyint=1)--获取类型,1取主文件路径,2取日志文件路径
returns nvarchar(1000)
as
begin
declare @filepath nvarchar(1000)
if @GetType in (1,2)
begin
select @filepath=reverse(physical_name) from sys.master_files where database_id=db_id(@DBName) and file_id=@GetType
set @filepath=right(@filepath,len(@filepath)-charindex('/',@filepath)+1)
set @filepath=reverse(@filepath)
end
return @filepath
end
下载体验