1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-11-16 23:02:26 +03:00

Remove duplicate sqlite3_changes() declaration. Ticket #779. (CVS 1690)

FossilOrigin-Name: 0322c83776f0c17286e9accb3ed3c72b5be6cdab
This commit is contained in:
danielk1977
2004-06-25 10:25:10 +00:00
parent 90ba3bd065
commit fa916940fa
3 changed files with 8 additions and 28 deletions

View File

@@ -1,5 +1,5 @@
C A\sfew\smore\scomment\schanges.\sNo\scode\salterations.\s(CVS\s1689) C Remove\sduplicate\ssqlite3_changes()\sdeclaration.\sTicket\s#779.\s(CVS\s1690)
D 2004-06-25T08:32:26 D 2004-06-25T10:25:11
F Makefile.in cb7a9889c38723f72b2506c4236ff30a05ff172b F Makefile.in cb7a9889c38723f72b2506c4236ff30a05ff172b
F Makefile.linux-gcc a9e5a0d309fa7c38e7c14d3ecf7690879d3a5457 F Makefile.linux-gcc a9e5a0d309fa7c38e7c14d3ecf7690879d3a5457
F README f1de682fbbd94899d50aca13d387d1b3fd3be2dd F README f1de682fbbd94899d50aca13d387d1b3fd3be2dd
@@ -58,7 +58,7 @@ F src/printf.c 3090c8ff397d549bc0de09b16d8ab7fd37a0c3f7
F src/random.c eff68e3f257e05e81eae6c4d50a51eb88beb4ff3 F src/random.c eff68e3f257e05e81eae6c4d50a51eb88beb4ff3
F src/select.c f02a65af34231031896e8442161cb5251e191e75 F src/select.c f02a65af34231031896e8442161cb5251e191e75
F src/shell.c 24b641700c9d90f361fcfa4f432c5b4aff704e6d F src/shell.c 24b641700c9d90f361fcfa4f432c5b4aff704e6d
F src/sqlite.h.in 1f400a561fca3b1df73677d2d97046425d47cae4 F src/sqlite.h.in b70fded2bdfeaddfb06adea3888118b722975136
F src/sqliteInt.h dd796b6abc6d50505fe33c54f0143d7000681a41 F src/sqliteInt.h dd796b6abc6d50505fe33c54f0143d7000681a41
F src/table.c af14284fa36c8d41f6829e3f2819dce07d3e2de2 F src/table.c af14284fa36c8d41f6829e3f2819dce07d3e2de2
F src/tclsqlite.c 8d093146332b2f0cbf2a8ebe8597d481619308a3 F src/tclsqlite.c 8d093146332b2f0cbf2a8ebe8597d481619308a3
@@ -229,7 +229,7 @@ F www/tclsqlite.tcl 19191cf2a1010eaeff74c51d83fd5f5a4d899075
F www/vdbe.tcl 59288db1ac5c0616296b26dce071c36cb611dfe9 F www/vdbe.tcl 59288db1ac5c0616296b26dce071c36cb611dfe9
F www/version3.tcl 563ba3ac02f64da27ab17f3edbe8e56bfd0293fb F www/version3.tcl 563ba3ac02f64da27ab17f3edbe8e56bfd0293fb
F www/whentouse.tcl a8335bce47cc2fddb07f19052cb0cb4d9129a8e4 F www/whentouse.tcl a8335bce47cc2fddb07f19052cb0cb4d9129a8e4
P 084f3fffbdeb1e2b375817ae1111b867c9d32559 P b68b4a4262c2ab60f9a7cc0c206b9db207f86933
R 3d04f41857d7d71eac91c498ab85aa4a R 154f6b0bea60bc2b9117a79b58e12295
U danielk1977 U danielk1977
Z 3b801fb007c493686ca074ae1ca89a83 Z f05729835e5346445df4f2313c2ee805

View File

@@ -1 +1 @@
b68b4a4262c2ab60f9a7cc0c206b9db207f86933 0322c83776f0c17286e9accb3ed3c72b5be6cdab

View File

@@ -12,7 +12,7 @@
** This header file defines the interface that the SQLite library ** This header file defines the interface that the SQLite library
** presents to client programs. ** presents to client programs.
** **
** @(#) $Id: sqlite.h.in,v 1.106 2004/06/22 12:13:55 drh Exp $ ** @(#) $Id: sqlite.h.in,v 1.107 2004/06/25 10:25:11 danielk1977 Exp $
*/ */
#ifndef _SQLITE_H_ #ifndef _SQLITE_H_
#define _SQLITE_H_ #define _SQLITE_H_
@@ -206,26 +206,6 @@ int sqlite3_changes(sqlite3*);
*/ */
int sqlite3_total_changes(sqlite3*); int sqlite3_total_changes(sqlite3*);
/*
** This function returns the number of database rows that were changed
** by the last INSERT, UPDATE, or DELETE statment completed. The change
** count is not updated by SQL statements other than INSERT, UPDATE or
** DELETE.
**
** Changes are counted, even if they are later undone by a ROLLBACK or
** ABORT. Changes associated with trigger programs that execute as a
** result of the INSERT, UPDATE, or DELETE statement are not counted.
**
** SQLite implements the command "DELETE FROM table" without a WHERE clause
** by dropping and recreating the table. (This is much faster than going
** through and deleting individual elements form the table.) Because of
** this optimization, the change count for "DELETE FROM table" will be
** zero regardless of the number of elements that were originally in the
** table. To get an accurate count of the number of rows deleted, use
** "DELETE FROM table WHERE 1" instead.
*/
int sqlite3_changes(sqlite3*);
/* This function causes any pending database operation to abort and /* This function causes any pending database operation to abort and
** return at its earliest opportunity. This routine is typically ** return at its earliest opportunity. This routine is typically
** called in response to a user action such as pressing "Cancel" ** called in response to a user action such as pressing "Cancel"