Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
N
node-sqlite3
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
俞永鹏
node-sqlite3
Commits
f41e01c3
Commit
f41e01c3
authored
Feb 14, 2011
by
Konstantin Käfer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
rename to macros.h
parent
035e7c90
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
8 additions
and
9 deletions
+8
-9
database.cc
src/database.cc
+1
-1
database.h
src/database.h
+2
-2
macros.h
src/macros.h
+2
-2
sqlite3_bindings.cc
src/sqlite3_bindings.cc
+0
-1
statement.cc
src/statement.cc
+1
-1
statement.h
src/statement.h
+2
-2
No files found.
src/database.cc
View file @
f41e01c3
...
...
@@ -17,7 +17,7 @@
#include <node.h>
#include <node_events.h>
#include "
sqlite3_binding
s.h"
#include "
macro
s.h"
#include "database.h"
#include "statement.h"
...
...
src/database.h
View file @
f41e01c3
...
...
@@ -12,8 +12,8 @@
// ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
// OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
#ifndef DATABASE_H
#define DATABASE_H
#ifndef
NODE_SQLITE3_SRC_
DATABASE_H
#define
NODE_SQLITE3_SRC_
DATABASE_H
#include <v8.h>
#include <node.h>
...
...
src/
sqlite3_binding
s.h
→
src/
macro
s.h
View file @
f41e01c3
...
...
@@ -12,8 +12,8 @@
// ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
// OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
#ifndef
SQLITE3_BINDING
S_H
#define
SQLITE3_BINDING
S_H
#ifndef
NODE_SQLITE3_SRC_MACRO
S_H
#define
NODE_SQLITE3_SRC_MACRO
S_H
#define CHECK(rc) { if ((rc) != SQLITE_OK) \
return ThrowException(Exception::Error(String::New( \
...
...
src/sqlite3_bindings.cc
View file @
f41e01c3
...
...
@@ -16,7 +16,6 @@
#include <node.h>
#include <node_events.h>
#include "sqlite3_bindings.h"
#include "database.h"
#include "statement.h"
...
...
src/statement.cc
View file @
f41e01c3
...
...
@@ -20,7 +20,7 @@ extern "C" {
#include "database.h"
#include "statement.h"
#include "
sqlite3_binding
s.h"
#include "
macro
s.h"
static
Persistent
<
String
>
callback_sym
;
Persistent
<
FunctionTemplate
>
Statement
::
constructor_template
;
...
...
src/statement.h
View file @
f41e01c3
...
...
@@ -12,8 +12,8 @@
// ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
// OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
#ifndef STATEMENT_H
#define STATEMENT_H
#ifndef
NODE_SQLITE3_SRC_
STATEMENT_H
#define
NODE_SQLITE3_SRC_
STATEMENT_H
#include <v8.h>
#include <node.h>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment