After nearly 340.000 downloads, version 4.1 of my SQLite & SQL Server Compact Toolbox extension for Visual Studio 2015, 2013, 2012 and 2010 is now available for download. This blog post is a visual guide to the new features included in this release, many suggested by users of the tool via the CodePlex issue tracker.
Improved SQLite integration
"Add SQLite Connection" dialog improved
The “Add SQLite Connection” dialog has been enhanced to include all the available ADO.NET connection string options, by using SQLiteConnectionStringBuilder. This allows you to easily specify advanced “PRAGMA” statements to be configured, for example:
PRAGMA foreign_keys=ON;
Enumerate SQLite Server Explorer connections
If you have the SQLite support for Server Explorer installed (requires Visual Studio Community or higher, will not work with Express). See my blog post here for more info on the SQLite DDEX provider. Those connections are now also listed in the Toolbox list of connections:
Enumerate SQLite views and triggers
SQLite allows you to define triggers and views, and these are now listed under each SQLite database file, and you can create CREATE and DROP statements for these object types.
SQL Compact runtime no longer required
The Toolbox no longer requires any version of SQL Server Compact to be installed (useful if you only work with SQLite database files)
Other
Added button to "About" to re-register DDEX providers (see screenshot above)
Added option to ask for modified scripts to be saved
Added option to enable using multi-line text in "Edit Table Data"
Fixes and improvements
- horisontal scrollbar in Explorer window
- less obtrusive handling of DDEX providers installation
- no longer using MessageBox.Show
- update to latest SQLite ADO.NET provider (1.0.94)
- improved parsing/separation of SQL statements spilt with GO in Editor
2 comments:
Thanks, EJ - will this ever be available for VS 2008?
Clay: In a word - no. It is available for VS 2010, VS 2012, VS 2013 & VS 2015, and as two standalone apps, one for SQL CE 3.5 and one for SQLCE 4.0. Are you looking for SQLite or SQLCE with VS 2008?
Post a Comment