All Projects → BiAtoms → SQLite.viewer

BiAtoms / SQLite.viewer

Licence: MIT license
An elegant library for debugging sqlite databases in iOS applications

Programming Languages

swift
15916 projects
javascript
184084 projects - #8 most used programming language
HTML
75241 projects
ruby
36898 projects - #4 most used programming language
objective c
16641 projects - #2 most used programming language
c
50402 projects - #5 most used programming language

Projects that are alternatives of or similar to SQLite.viewer

Utinyripper
GUI and API library to work with Engine assets, serialized and bundle files
Stars: ✭ 1,871 (+2463.01%)
Mutual labels:  viewer, debug
bpmn-visualization-js
A TypeScript library for visualizing process execution data on BPMN diagrams
Stars: ✭ 113 (+54.79%)
Mutual labels:  viewer
anti-debugging
Anti-debugging techniques on a (bad looking) Win32 application.
Stars: ✭ 74 (+1.37%)
Mutual labels:  debug
plasma
A declarative, immediate mode UI widget library for Roblox.
Stars: ✭ 35 (-52.05%)
Mutual labels:  debug
xdebug
Enables Xdebug for CLI PHP scripts on demand
Stars: ✭ 12 (-83.56%)
Mutual labels:  debug
PdfViewerDemo
pdf阅读器,基于MuPDF开发,可横竖切换浏览、多种批注功能、电子签章
Stars: ✭ 103 (+41.1%)
Mutual labels:  viewer
axios-curlirize
axios plugin converting requests to cURL commands, saving and logging them.
Stars: ✭ 152 (+108.22%)
Mutual labels:  debug
UnitySettings
Runtime debugging menu (like setting on Android) for Unity.
Stars: ✭ 26 (-64.38%)
Mutual labels:  debug
live-platform
Add breakpoints, logs, metrics, and spans to live production applications
Stars: ✭ 37 (-49.32%)
Mutual labels:  debug
tracelog
TraceLog is a highly configurable, flexible, portable, and simple to use debug logging system for Swift and Objective-C applications running on Linux, macOS, iOS, watchOS, and tvOS.
Stars: ✭ 52 (-28.77%)
Mutual labels:  debug
coco-viewer
Simple COCO Viewer in Tkinter
Stars: ✭ 65 (-10.96%)
Mutual labels:  viewer
windbgtree
A command tree based on commands and extensions for Windows Kernel Debugging.
Stars: ✭ 94 (+28.77%)
Mutual labels:  debug
virtex
A three.js object viewer written in TypeScript
Stars: ✭ 14 (-80.82%)
Mutual labels:  viewer
ruby-ray
Easily debug Ruby applications
Stars: ✭ 17 (-76.71%)
Mutual labels:  debug
backend debug
Debug support in TYPO3 backend
Stars: ✭ 20 (-72.6%)
Mutual labels:  debug
GoogleCloudLogging
Swift (Darwin) library for logging application events in Google Cloud.
Stars: ✭ 24 (-67.12%)
Mutual labels:  debug
react-native-startup-time
measure startup time of your react-native app
Stars: ✭ 88 (+20.55%)
Mutual labels:  debug
instagram json viewer
Transforms Instagram's *.json / backup data - that you get via the Data Download Tool - to a readable format!
Stars: ✭ 41 (-43.84%)
Mutual labels:  viewer
soar-php
SQL optimizer and rewriter. - SQL 优化、重写器(辅助 SQL 调优)。
Stars: ✭ 140 (+91.78%)
Mutual labels:  debug
react-imageViewer
React component for image displaying in full screen
Stars: ✭ 61 (-16.44%)
Mutual labels:  viewer

Platform Cocoapods Compatible Build Status - Master

SQLite.viewer

An elegant library for viewing, editing, or debugging sqlite databases in iOS applications. Inspired by Android Debug Database.

SQLiteViewer demo

Features

  • List available databases
  • List tables
  • Run raw query

ToDo

  • Inserting rows
  • Editing rows
  • Deleting rows
  • New UI and UX

Usage

In AppDelegate.swift file, just start SQLiteViewer.

import UIKit
import SQLiteViewer

@UIApplicationMain
class AppDelegate: UIResponder, UIApplicationDelegate {

    var window: UIWindow?


    func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool {
        
        SQLiteViewer.shared.start()
        return true
    }
}

Installation

CocoaPods

CocoaPods is a dependency manager for Cocoa projects. You can install it with the following command:

$ gem install cocoapods

To integrate SQLite.viewer into your Xcode project using CocoaPods, specify it in your Podfile:

source 'https://github.com/CocoaPods/Specs.git'
target '<Your Target Name>' do
    pod 'SQLite.viewer', '~> 1.0', :configurations => ['Debug']
end

Then, run the following command:

$ pod install

Authors

See also the list of contributors who participated in this project.

License

This project is licensed under the MIT License - see the LICENSE file for details

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].