| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
Or: Download the 64-bit portable zip • Install using Chocolatey
Requires Windows 10 or newer on a 64-bit computer. Going forward, 32-bit systems and Windows 7 and 8 are no longer supported. Users of older machines may continue to use version 1.2.3 which should work indefinitely.
Iterate through table rows with automatic variable assignment:
FOREACH (@id, @name, @email) IN customers
BEGIN
PRINT CONCAT('Customer: ', @name, ' (', @email, ')');
ENDExecute SQL Notebook scripts from the command line without opening the GUI:
SqlNotebookCmd "MyNotebook.sqlnb" "MyScript"Create and delete scripts programmatically:
-- Create a new script
CREATE SCRIPT DataCleanup AS '
DELETE FROM temp_table WHERE processed = 1;
PRINT ''Cleanup completed'';
';
-- Execute the script
EXECUTE DataCleanup;
-- Remove the script when no longer needed
DROP SCRIPT DataCleanup;Save your notebook programmatically from within scripts:
-- Save to current file
SAVE;
-- Save to a specific file
SAVE 'MyBackup.sqlnb';Import data from DuckDB files with full UI support:
-- Copy data from DuckDB
IMPORT DATABASE 'duckdb'
CONNECTION 'Data Source=C:\data\analytics.duckdb'
TABLE sales_data;
-- Create live connection
IMPORT DATABASE 'duckdb'
CONNECTION 'Data Source=C:\data\analytics.duckdb'
TABLE sales_data
OPTIONS (LINK: 1);Expanded SQLite file compatibility:
Requires Windows 7 or newer.
Windows 7 users: Service Pack 1 and security update KB3063858 are required.
Changes
Requires Windows 7 or newer.
Windows 7 users: Service Pack 1 and security update KB3063858 are required.
Changes
Requires 64-bit Windows 7 or newer.
Windows 7 users: Service Pack 1 and security update KB2533623 are required.
Changes
Requires 64-bit Windows 7 or newer.
Windows 7 users: Service Pack 1 and security update KB2533623 are required.
Changes
Requires 64-bit Windows 7 or newer.
Windows 7 users: Service Pack 1 and security update KB2533623 are required.
Changes
Requires 64-bit Windows 7 or newer.
Windows 7 users: Service Pack 1 and security update KB2533623 are required.
Changes
Requires 64-bit Windows 7 (or newer).
Changes
| Back | FazBrowse Home | New Git URL |