Quantcast
Channel: SQLite Helper (C#)
Browsing latest articles
Browse All 20 View Live

Updated Wiki: Home

IntroductionI have written a small class, SQLiteHelper which aims to simplify the usage of SQLite in C#.PrerequisiteThis small class is built on top of System.Data.SQLite.DLL. A reference of this DLL...

View Article



Source code checked in, #3f588a86dda9

Minor update

View Article

Source code checked in, #d167b20bdd1f

update

View Article

Project License Changed

This is free and unencumbered software released into the public domain. Anyone is free to copy, modify, publish, use, compile, sell, or distribute this software, either in source code form or as a...

View Article

Source code checked in, #457a61910696

SQLiteHelper V 1.1 Add: Parameterized SQL Execution Support New Method: Update Table's Structure New Method: LastInsertRowId New Method: GetTableList New Method: ShowDatabase New Method:...

View Article


Released: SQLiteHelper V1.1 (Mar 22, 2014)

SQLiteHelper V 1.1 Add: Parameterized SQL Execution Support New Method: Update Table's Structure New Method: LastInsertRowId New Method: GetTableList New Method: ShowDatabase New Method:...

View Article

Created Release: SQLiteHelper V1.1 (Mar 22, 2014)

SQLiteHelper V 1.1Add: Parameterized SQL Execution SupportNew Method: Update Table's StructureNew Method: LastInsertRowIdNew Method: GetTableListNew Method: ShowDatabaseNew Method: AttachDatabase,...

View Article

Image may be NSFW.
Clik here to view.

Updated Wiki: Home

IntroductionSQLite is an open source, embed, cross platform (Windows, IOS, Android, Linux) database engine. It requires no installation and zero configuration in order to work at client's computer.I...

View Article


Source code checked in, #a31b7f29ba8c

SQLiteHelper V1.2 - Added parameter support for "Select", "Execute" and "ExecuteScalar" methods.

View Article


Created Release: SQLiteHelper V1.2 (Mar 27, 2014)

Change Log:SQLiteHelper V1.2- Added parameter support for "Select", "Execute" and "ExecuteScalar" methods.SQLiteHelper V 1.1Add: Parameterized SQL Execution SupportNew Method: Update Table's...

View Article

Source code checked in, #cec6903c28e2

Minor update on the test app. - Forms.Query.Insert: Updated

View Article

Released: SQLiteHelper V1.2 (Mar 27, 2014)

Change Log:SQLiteHelper V1.2 - Added parameter support for "Select", "Execute" and "ExecuteScalar" methods.SQLiteHelper V 1.1 Add: Parameterized SQL Execution Support New Method: Update Table's...

View Article

Updated Release: SQLiteHelper V1.2 (Mar 27, 2014)

Change Log:SQLiteHelper V1.2- Added parameter support for "Select", "Execute" and "ExecuteScalar" methods.SQLiteHelper V 1.1Add: Parameterized SQL Execution SupportNew Method: Update Table's...

View Article


Image may be NSFW.
Clik here to view.

Updated Wiki: Home

IntroductionSQLite is an open source, embed, cross platform (Windows, IOS, Android, Linux) database engine. It requires no installation and zero configuration in order to work at client's computer.I...

View Article

Image may be NSFW.
Clik here to view.

Updated Wiki: Home

IntroductionSQLite is an open source, embed, cross platform (Windows, IOS, Android, Linux) database engine. It requires no installation and zero configuration in order to work at client's computer.I...

View Article


New Post: About SQLite Helper

Great idea. Any full unit test about it? I want: Create Database (if not exists) Create table using string var sql = "CREATE TABLE ..."; Insert data in table using string var sql = "INSERT INTO TABLE...

View Article

Created Unassigned: GetAllTables returns too many objects [1]

Should probably be:SELECT name FROM my_db.sqlite_master WHERE type='table';

View Article


Edited Unassigned: GetTableStatus returns too many objects [1]

Should probably be:SELECT name FROM my_db.sqlite_master WHERE type='table';

View Article

Edited Unassigned: GetTableList returns too many objects [1]

Should probably be:SELECT name FROM my_db.sqlite_master WHERE type='table';

View Article

Edited Unassigned: GetTableList returns too many objects [1]

Should probably be:SELECT name FROM sqlite_master WHERE type='table';```public DataTable GetTableList(){ DataTable dt = Select("SELECT name FROM sqlite_master WHERE type='table'"); DataTable dt2 = new...

View Article
Browsing latest articles
Browse All 20 View Live




Latest Images