* contrib/examples/guestbk/guestbk.prg
* contrib/examples/guestbk/inifiles.prg
* contrib/examples/guestbk/testcgi.prg
* contrib/examples/hscript/hscript.prg
* contrib/examples/pe/editorhi.prg
* contrib/gtwvg/tests/demowvg.prg
* contrib/hbbtree/tests/test.prg
* contrib/hbbtree/tests/ttest.prg
* contrib/hbclipsm/tests/testgaug.prg
* contrib/hbct/getinfo.prg
* contrib/hbct/getinput.prg
* contrib/hbct/getsecrt.prg
* contrib/hbct/keytime.prg
* contrib/hbct/numconv.prg
* contrib/hbfbird/tfirebird.prg
* contrib/hbgd/gd.prg
* contrib/hbgd/gdbar.prg
* contrib/hbgd/gdbarcod.prg
* contrib/hbgd/gdimage.prg
* contrib/hbgd/tests/animgif.prg
* contrib/hbgd/tests/gdtest.prg
* contrib/hbgd/tests/test_out.prg
* contrib/hbgf/gtk/button.prg
* contrib/hbgf/gtk/form.prg
* contrib/hbgf/gtk/menuitem.prg
* contrib/hbgf/gtk/winctrl.prg
* contrib/hbgf/os2pm/button.prg
* contrib/hbgf/os2pm/edit.prg
* contrib/hbgf/os2pm/tform.prg
* contrib/hbgf/os2pm/tmenu.prg
* contrib/hbgf/os2pm/tmenuitm.prg
* contrib/hbgf/tests/formtext.prg
* contrib/hbgf/tests/testctrl.prg
* contrib/hbgf/tests/testform.prg
* contrib/hbgf/win32/button.prg
* contrib/hbgf/win32/edit.prg
* contrib/hbgf/win32/form.prg
* contrib/hbgf/win32/menu.prg
* contrib/hbgf/win32/menuitem.prg
* contrib/hbhpdf/tests/harupdf.prg
* contrib/hbmsql/tests/dbf2msql.prg
* contrib/hbmsql/tmsql.prg
* contrib/hbmysql/dbf2mysql.prg
* contrib/hbmysql/tmysql.prg
* contrib/hbmysql/tsqlbrw.prg
* contrib/hbmzip/tests/myzip.prg
* contrib/hbnf/aredit.prg
* contrib/hbnf/calendar.prg
* contrib/hbnf/clrsel.prg
* contrib/hbnf/pending.prg
* contrib/hbnf/sqzn.prg
* contrib/hbnf/tbwhile.prg
* contrib/hbnf/tests/test.prg
* contrib/hbodbc/todbc.prg
* contrib/hbpgsql/tests/dbf2pg.prg
* contrib/hbpgsql/tpostgre.prg
* contrib/hbsqlit2/tests/hbsqlite.prg
* contrib/hbsqlit3/tests/sqlite3_test.prg
* contrib/hbtpathy/telepath.prg
* contrib/hbvpdf/hbvpdf.prg
* contrib/hbvpdf/hbvpdft.prg
* contrib/hbvpdf/tests/pdf_demo.prg
* contrib/hbvpdf/tests/tstpdf.prg
* contrib/hbw32/w32_tole.prg
* contrib/hbw32/w32_tprn.prg
* contrib/hbw32ddr/tests/testdx.prg
* contrib/rddado/adordd.prg
* contrib/rddado/tests/access2.prg
* source/debug/debugger.prg
* source/rdd/hbsix/sxini.prg
* utils/hbdot/hbdot.prg
* utils/hbextern/hbextern.prg
* Cleanup.
<> -> != or !( == ) for strings
if() -> iif() (for inline, where noticed)
' = ' -> := or == for comparisons, or left as '=' in the few
rare cases where this was (probably) intended (sxini.prg).
Excluded: most tests, hbnf, util/hbdoc, util/hbmake, hbwhat32, gtwvg,
hbvpdf has some difficult to judge '=' operators, so I left them.
! Fixed some _SET_EXACT dependencies in a few places.
; TODO: If possible, add a compile switch to catch these, as
it's not very easy using 'grep'.
245 lines
6.8 KiB
Plaintext
245 lines
6.8 KiB
Plaintext
/*
|
|
* $Id$
|
|
*/
|
|
|
|
/*
|
|
* SQLite3 Demo
|
|
*
|
|
* Copyright 2007 P.Chornyj <myorg63@mail.ru>
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2, or (at your option)
|
|
* any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
*/
|
|
|
|
#include "hbsqlit3.ch"
|
|
|
|
#define TRACE
|
|
#define TABLE_SQL "CREATE TABLE t1( id INTEGER PRIMARY KEY AUTOINCREMENT, name TEXT, age INTEGER )"
|
|
|
|
PROCEDURE main()
|
|
|
|
? sqlite3_libversion()
|
|
sqlite3_sleep( 3000 )
|
|
|
|
IF sqlite3_libversion_number() < 3005001
|
|
RETURN
|
|
ENDIF
|
|
|
|
t1()
|
|
t2()
|
|
RETURN
|
|
|
|
/*
|
|
*/
|
|
PROCEDURE t1()
|
|
LOCAL lCreateIfNotExist := .f.
|
|
LOCAL db := sqlite3_open( "new.s3db", lCreateIfNotExist )
|
|
|
|
IF ! Empty( db )
|
|
sqlite3_exec( db, "DROP TABLE t1" )
|
|
ENDIF
|
|
RETURN
|
|
|
|
/*
|
|
*/
|
|
PROCEDURE t2()
|
|
LOCAL lCreateIfNotExist := .t.
|
|
LOCAL db := sqlite3_open( "new.s3db", lCreateIfNotExist )
|
|
LOCAL stmt
|
|
LOCAL nCCount, nCType, nI, nJ
|
|
LOCAL aCType := { "SQLITE_INTEGER", "SQLITE_FLOAT", "SQLITE_TEXT", "SQLITE_BLOB", "SQLITE_NULL" }
|
|
LOCAL aTable
|
|
|
|
IF ! Empty( db )
|
|
|
|
#ifdef TRACE
|
|
sqlite3_profile( db, .t. )
|
|
sqlite3_trace( db, .t. )
|
|
#endif
|
|
sqlite3_exec( db, "PRAGMA auto_vacuum=0" )
|
|
sqlite3_exec( db, "PRAGMA page_size=4096" )
|
|
|
|
IF sqlite3_exec( db, TABLE_SQL ) == SQLITE_OK
|
|
? "CREATE TABLE t1 - Ok"
|
|
END
|
|
|
|
sqlite3_exec( db, ;
|
|
"BEGIN TRANSACTION;" + ;
|
|
"INSERT INTO t1( name, age ) VALUES( 'Bob', 52 );" + ;
|
|
"INSERT INTO t1( name, age ) VALUES( 'Fred', 40 );" + ;
|
|
"INSERT INTO t1( name, age ) VALUES( 'Sasha', 25 );" + ;
|
|
"INSERT INTO t1( name, age ) VALUES( 'Ivet', 28 );" + ;
|
|
"COMMIT;" )
|
|
|
|
? "BEGIN TRANSACTION"
|
|
? "INSERT INTO t1( name, age ) VALUES( 'Bob', 52 )"
|
|
? "INSERT INTO t1( name, age ) VALUES( 'Fred', 40 )"
|
|
? "INSERT INTO t1( name, age ) VALUES( 'Sasha', 25 )"
|
|
? "INSERT INTO t1( name, age ) VALUES( 'Ivet', 28 )"
|
|
? "COMMIT"
|
|
|
|
? "The number of database rows that were changed: " + ltrim( str( sqlite3_changes( db ) ) )
|
|
? "Total changes: " + ltrim( str( sqlite3_total_changes( db ) ) )
|
|
|
|
sqlite3_sleep( 3000 )
|
|
|
|
stmt := sqlite3_prepare( db, "INSERT INTO t1( name, age ) VALUES( :name, :age )")
|
|
IF ! Empty( stmt )
|
|
IF sqlite3_bind_text( stmt, 1, "Andy" ) == SQLITE_OK .AND. ;
|
|
sqlite3_bind_int( stmt, 2, 17 ) == SQLITE_OK
|
|
IF sqlite3_step( stmt ) == SQLITE_DONE
|
|
? "INSERT INTO t1( name, age ) VALUES( 'Andy', 17 ) - Done"
|
|
ENDIF
|
|
ENDIF
|
|
sqlite3_reset( stmt )
|
|
|
|
IF sqlite3_bind_text( stmt, 1, "Mary" ) == SQLITE_OK .AND. ;
|
|
sqlite3_bind_int( stmt, 2, 19 ) == SQLITE_OK
|
|
IF sqlite3_step( stmt ) == SQLITE_DONE
|
|
? "INSERT INTO t1( name, age ) VALUES( 'Mary', 19 ) - Done"
|
|
ENDIF
|
|
ENDIF
|
|
sqlite3_clear_bindings( stmt )
|
|
sqlite3_finalize( stmt )
|
|
ENDIF
|
|
|
|
? "The number of database rows that were changed: " + ltrim( str( sqlite3_changes( db ) ) )
|
|
? "Total changes: " + ltrim( str( sqlite3_total_changes( db ) ) )
|
|
? "Last _ROWID_: " + str( sqlite3_last_insert_rowid( db ) )
|
|
? ""
|
|
|
|
stmt := sqlite3_prepare( db, "SELECT * FROM t1 WHERE name == :name ")
|
|
sqlite3_bind_text( stmt, 1, "Andy" )
|
|
|
|
?
|
|
? "SELECT * FROM t1 WHERE name == 'Andy'"
|
|
nJ := 0
|
|
|
|
DO WHILE sqlite3_step( stmt ) == SQLITE_ROW
|
|
nCCount := sqlite3_column_count( stmt )
|
|
++nJ
|
|
? "Record # " + str( nJ )
|
|
|
|
IF nCCount > 0
|
|
FOR nI := 0 TO nCCount - 1
|
|
nCType := sqlite3_column_type( stmt, nI )
|
|
? "Column name : " + sqlite3_column_name( stmt, nI )
|
|
? "Column type : " + aCType[ nCType ]
|
|
? "Column value: "
|
|
|
|
SWITCH nCType
|
|
CASE SQLITE_BLOB
|
|
?? "BLOB" //sqlite3_column_blob( stmt, nI )
|
|
EXIT
|
|
|
|
CASE SQLITE_INTEGER
|
|
?? str ( sqlite3_column_int( stmt, nI ) )
|
|
EXIT
|
|
|
|
CASE SQLITE_NULL
|
|
?? "NULL"
|
|
EXIT
|
|
|
|
CASE SQLITE_TEXT
|
|
?? sqlite3_column_text( stmt, nI )
|
|
EXIT
|
|
END SWITCH
|
|
|
|
NEXT nI
|
|
ENDIF
|
|
ENDDO
|
|
? "Total records - " + str( nJ )
|
|
|
|
sqlite3_clear_bindings( stmt )
|
|
sqlite3_finalize( stmt )
|
|
|
|
sqlite3_sleep( 3000 )
|
|
|
|
stmt := sqlite3_prepare( db, "SELECT * FROM t1 WHERE age >= ?5")
|
|
sqlite3_bind_int( stmt, 5, 40 )
|
|
|
|
?
|
|
? "SELECT * FROM t1 WHERE age >= 40 "
|
|
nJ := 0
|
|
DO WHILE sqlite3_step( stmt ) == SQLITE_ROW
|
|
nCCount := sqlite3_column_count( stmt )
|
|
++nJ
|
|
? "Record # " + str( nJ )
|
|
|
|
IF nCCount > 0
|
|
FOR nI := 1 TO nCCount
|
|
nCType := sqlite3_column_type( stmt, nI )
|
|
? "Column name : " + sqlite3_column_name( stmt, nI )
|
|
? "Column type : " + aCType[ nCType ]
|
|
? "Column value: "
|
|
SWITCH nCType
|
|
CASE SQLITE_BLOB
|
|
?? "BLOB" //sqlite3_column_blob( stmt, nI )
|
|
EXIT
|
|
|
|
CASE SQLITE_INTEGER
|
|
?? str( sqlite3_column_int( stmt, nI ) )
|
|
EXIT
|
|
|
|
CASE SQLITE_NULL
|
|
?? "NULL"
|
|
EXIT
|
|
|
|
CASE SQLITE_TEXT
|
|
?? sqlite3_column_text( stmt, nI )
|
|
EXIT
|
|
END SWITCH
|
|
|
|
NEXT nI
|
|
ENDIF
|
|
ENDDO
|
|
? "Total records - " + str( nJ )
|
|
sqlite3_clear_bindings( stmt )
|
|
sqlite3_finalize( stmt )
|
|
|
|
sqlite3_sleep( 3000 )
|
|
|
|
?
|
|
? "SELECT id, name, age + 5 FROM t1"
|
|
stmt := sqlite3_prepare( db, "SELECT id, name, age + 5 FROM t1")
|
|
|
|
? sqlite3_column_name( stmt, 1 )
|
|
? sqlite3_column_name( stmt, 2 )
|
|
? sqlite3_column_name( stmt, 3 )
|
|
|
|
? aCType[ sqlite3_column_type( stmt, 1 ) ]
|
|
? aCType[ sqlite3_column_type( stmt, 2 ) ]
|
|
? aCType[ sqlite3_column_type( stmt, 3 ) ]
|
|
|
|
? sqlite3_column_decltype( stmt, 1 )
|
|
? sqlite3_column_decltype( stmt, 2 )
|
|
? sqlite3_column_decltype( stmt, 3 )
|
|
|
|
sqlite3_finalize( stmt )
|
|
|
|
sqlite3_sleep( 3000 )
|
|
|
|
?
|
|
? "sqlite3_get_table"
|
|
?
|
|
aTable := sqlite3_get_table( db, "SELECT name, age FROM t1 WHERE age BETWEEN 10 AND 20" )
|
|
FOR nI := 1 TO Len( aTable )
|
|
FOR nJ := 1 TO Len( aTable[nI] )
|
|
?? aTable[nI][nJ], " "
|
|
NEXT nJ
|
|
?
|
|
NEXT nI
|
|
|
|
sqlite3_sleep( 3000 )
|
|
ENDIF
|
|
|
|
RETURN
|