Business
Desktop Enhancements
Drivers
Games
Home & Education
HTML
Info Management
Internet
MP3 and Audio
Multimedia
Programming
ActiveX
C/C++
CGI
Commerce
Database
Delphi
Internet Protocol
Java
JavaScript
Perl
Spreadsheet
Visual Basic
Utilities
Egg Timer Plus
Disk Drill
Quick Slide Show
Agama Web Menus
EventLog Inspector
Shadow Security Scanner
LCD PixelsOK
PCM-2 USB Phone Recorder
SmartDraw 2010
CMDOW
VZO Mobile Video Phone
TextToWav
Currencies
AndroChef Java Decompiler
SunlitGreen Photo Manager
Dramatized Bible mp3 Download
Design Your Own Home Architecture
iMesh Light
SourceFormatX Source Code Formatter
Avro Keyboard Portable
Advanced Time Reports Professional
SharePoint Text Size Zoom
Advanced RSS Mixer Personal
Super Mouse Auto Clicker
Staxofax
IMCapture for Skype
Whizlabs OCAJP 7 Preparation Kit
ProteMac Meter
Wavepad Free Sound Creation Software
AT DVD Video Image Extractor
CHM Editor
Efficient To-Do List Free
Bigasoft QuickTime Converter for Mac
dbExpress driver for InterBase
Interactive Clownfish Wallpaper
AT DVD Player
Video Chat Recorder
Photo slide effect
SaversPlanet Forest Screensaver
UpdateStar Password Finder
Trackback Url For This Post
Add To Quality Center Excel Add
Delphi Forums
Seo Services Company Provide Seo Service
Codegear Delphi Forums
Delphi Forums Cbp
Delphi Forums Chat Rooms
Seo Stats And Site Analysis
Astroscan S Earth Vistas Screen Saver
Raj Wap Video X
Syria Talk Messenger Mobile
Article Directory Script For Wordpress
Bijoy Bangla Font Sutonny Mj
Photo Editing Software For Nokia E5 Free
Best Lotus Notes Emoticons DownloadSQLitepp
Software ID: 129400| Dialup | (56k) | - | 03 s |
| ISDN | (128k) | - | 02 s |
| DSL | (512k) | - | 01 s |
| Cable | (1024k) | - | 01 s |
| T1 | (1484k) | - | 01 s |
SQLitepp Description
SQLitepp is a C/C++/Python wrapper to sqlite library for database management. It implements an object oriented way to manipulate the database in every supported language. SQLitepp supports selfupdatable queries and a straight SQL code query system without using strange things for querying the database, letting you manipulate it directly in SQL but also exposing simple object oriented methods to manipulate the result of the queries and updating them. Python EXAMPLE: db = SQLDatabase("database.db") q = db.query("Tablename", "SELECT Name,Id FROM %t") if len(q): tuple1 = q[0] tuple1["Name"] = "Foobar" tuple1.commit() del db C++ EXAMPLE: SQLDatabase db("database.db"), SQLQuery *q = db.query("Tablename", "SELECT Name,Id FROM %t"), if(q->numberOfTuples()) { SQLRow *tuple1 = q->getRow(0), tuple1->set("Name", "Foobar"), tuple1->commit(), } delete q, C EXAMPLE: void *db = new_SQLDatabase("database.db"), void *q = SQLDatabase_query(db, "Tablename", "SELECT Name,Id FROM %t"), if(SQLQuery_numberOfTuples(q)) { void *tuple1 = SQLQuery_getRow(q, 0), SQLRow_set(tuple1, "Name", "Foobar"), SQLRow_commit(tuple1), } delete_SQLQuery(q), delete_SQLDatabase(db),