About 50 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 database, we need to …

  2. 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.

  3. Installing and Using SQLite on Windows - CodeProject

    Dec 8, 2014 · But, learn the hard way first always say, so… let's get our command line on. Getting Started - Using SQLite on Windows Before we look at using SQLite in Visual Studio, let's walk …

  4. Code Project

    CodeProject is a platform offering resources, articles, and tools for software developers to learn, share knowledge, and collaborate on coding projects.

  5. Sqlite and UWP - CodeProject

    Aug 21, 2018 · Background 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. Integration of …

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

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

  7. Sqlstone: Every User Owns A Personal Copy of the Database: Solving ...

    Jun 20, 2024 · Using .NET Core 8.x to create a WebAPI framework which saves each user's data in a personal copy of Sqlite database.

  8. An Absolute Beginner’s Guide to Building and Accessing ... - CodeProject

    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 view name in …

  9. Decouple ASP.NET Core Identity, Authentication and Database Engines

    Apr 1, 2024 · Support the Same User Sign-in Multiple Devices and Browser Tabs Since JWT is stateless, ASP.NET Core Identity along with Microsoft.AspNetCore.Authorization supports the same …

  10. Work with Database using Room and recyclerview in Android …

    Feb 24, 2019 · Download sample - 1.1 MB Introduction This article solves typical tasks: store data in application - using Room show data to user - using fragments and recyclerview store and …