Skip to content

Corrected minor formatting issues #4

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# SQLite Tracer

SQLite Tracer is a library and tool to profile and debug applications using SQLite. The library is linked into the target application, where it acts as a server for the tool to connect and receive information on statement execution. Main features:
SQLite Tracer is a library and tool to profile and debug applications using SQLite. The library is linked into the target application, where it acts as a server for the tool to connect and receive information on statement execution.

The main features are:

* Intercept statements executed by the target application
* Log query start time, end time, and duration
Expand All @@ -16,7 +18,7 @@ SQLite Tracer is a library and tool to profile and debug applications using SQLi

The provided solution `SQLiteTracer.sln` builds both the debugger assembly `SQLiteDebugger` and the log viewer app `SQLiteLogViewer`. The debug assembly depends on `Newtonsoft.Json`, and the log viewer also depends on `System.Data.SQLite` (currently only for SQLite itself, not the ADO.NET provider). These dependencies are provided with NuGet, and can be retrieved in Visual Studio with the "Restore NuGet packages" command.

The debug assembly is also provided as a NuGet package, `SQLiteDebugger`. This package can be built by running the following command from the `Source/SQLiteDebugger` directory, after building the library in release mode:
The debug assembly is also provided as a NuGet package: `SQLiteDebugger`. This package can be built by running the following command from the `Source/SQLiteDebugger` directory, after building the library in release mode:

```batchfile
nuget pack SQLiteDebugger.csproj -Prop Configuration=Release -IncludeReferencedProjects
Expand Down