Software SQLite Delphi Oracle PHP
Top site ratings
Eng Eng Add Favorite Page Default
Mail: softol@gawab.com
News RSS
Mortgage Brokers US
USA Insurance Companiy
American Hospitals
Attorney`s office, Law US






SiteMap
Back Home

SQLiteSheet FAQ

Register program

Press F3 key for open configuration panel.

Press "Register" button for open register window.

Paste from clipboard or enter in field register code.
Reload program.

Create new database

Create table test (ii integer, dd double, cc char(32));
Insert into test values (1, 1.1, 'one');
Insert into test values (2, 2.1, 'two');
Insert into test values (3, 3.1, 'three');
Select * from test;

Open exist database

Insert into test values (1, 1.1, 'one');
Insert into test values (2, 2.1, 'two');
Insert into test values (3, 3.1, 'three');
Select * from test;

Export to HTML from SQLite

--$HTME c:\demo.htm -select="select * from test"
II DD CC
1 1.1 one
2 2.1 two
3 3.1 three

Export to XML from SQLite

--$XMLE c:\demo.xml -select="select * from test"

Export to DBF from SQLite

--$DBFE c:\demo.dbf -select="select * from test"

Back Home
Google


.