About 103,000 results
Open links in new tab
  1. Displaying recent browsing history - CodeProject

    Sep 29, 2024 · The building blocks For the purpose of this article, I created a Console application using Visual Studio 2022. Database Since the browsing history is stored in an sqlite3 …

  2. Sqlite and UWP - CodeProject

    Aug 21, 2018 · Sqlite is a free database program that can be used for “light” database applications. It supports both transactions and SQL calls and is relatively easy to use.

  3. Cookie Quest: A Quest to Read Cookies from Four Popular Browsers

    Feb 14, 2012 · It turns out that FireFox locks this file while the browser is open so in order to read it, I had to take the following steps: Copy cookies.sqlite to a temporary file.

  4. Android dynamic Sqlite database management v.2 - CodeProject

    Oct 16, 2014 · Article about dynamic Sqlite database management on Android platform using Java class reflection.

  5. Sqlstone - Part 2: Every User Owns A Personal Copy of the …

    Jun 24, 2024 · All the user has to do is click the link on the page to download a copy of their Sqlite database. It'll download it to your Web Browser's Download directory. It's that simple. But, the …

  6. CppSQLite - C++ Wrapper for SQLite - CodeProject

    Mar 5, 2004 · Download CppSQLite demo projects, source and sqlite.dll for SQLite 2.8.15 - 156 KB Download CppSQLite 3 demo projects, source and sqlite3.dll for SQLite 3.0.8 - 171 KB …

  7. An Absolute Beginner’s Guide to Building and Accessing

    Using SQLite browser or using createTeable query we can create a view: create view ABmyView_view as ( select A.Id, B.Name from A,B where A.Id=B.Id) Then in URI pass the …

  8. How Much Can Sqlite Handle? Multiple Threads Concurrently …

    Mar 20, 2024 · An informal study of the Sqlite database and how many concurrent inserts it can handle. Will help you decide if you want to use Sqlite in your projects.

  9. Serving Images Stored in a Database through a Static URL using …

    Sep 11, 2020 · A small API application, written in .NET Core 3.1 to demonstrate how to retrieve images stored in a database using a normal static image URL

  10. Work with Database using Room and recyclerview in Android

    This article describes how to work with database in Android using Room and Recyclerview, also ViewModel.