diff options
author | Marcus Boerger <helly@php.net> | 2004-03-23 08:48:36 +0000 |
---|---|---|
committer | Marcus Boerger <helly@php.net> | 2004-03-23 08:48:36 +0000 |
commit | 82e2b354ac8d2df5643b50c432bde5ad0edac8db (patch) | |
tree | 5b2f641d14cbc0e2e9fbaaf3aa82d21c164d3615 /ext/sqlite/sqlite.c | |
parent | e6a1f0467760e69929e1993893e2a7c646cfe435 (diff) | |
download | php-git-82e2b354ac8d2df5643b50c432bde5ad0edac8db.tar.gz |
Consitency rules
Diffstat (limited to 'ext/sqlite/sqlite.c')
-rw-r--r-- | ext/sqlite/sqlite.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/sqlite/sqlite.c b/ext/sqlite/sqlite.c index a68aafcb75..cb5b8da51b 100644 --- a/ext/sqlite/sqlite.c +++ b/ext/sqlite/sqlite.c @@ -192,9 +192,9 @@ function_entry sqlite_funcs_db[] = { PHP_ME_MAPPING(__construct, sqlite_open, NULL) /* PHP_ME_MAPPING(close, sqlite_close, NULL)*/ PHP_ME_MAPPING(query, sqlite_query, NULL) - PHP_ME_MAPPING(queryAll, sqlite_array_query, NULL) - PHP_ME_MAPPING(querySingle, sqlite_single_query, NULL) - PHP_ME_MAPPING(queryUnbuffered, sqlite_unbuffered_query, NULL) + PHP_ME_MAPPING(arrayQuery, sqlite_array_query, NULL) + PHP_ME_MAPPING(singleQuery, sqlite_single_query, NULL) + PHP_ME_MAPPING(unbufferedQuery, sqlite_unbuffered_query, NULL) PHP_ME_MAPPING(lastInsertRowid, sqlite_last_insert_rowid, NULL) PHP_ME_MAPPING(changes, sqlite_changes, NULL) PHP_ME_MAPPING(createAggregate, sqlite_create_aggregate, NULL) |