|
1 // Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies). |
|
2 // All rights reserved. |
|
3 // This component and the accompanying materials are made available |
|
4 // under the terms of "Eclipse Public License v1.0" |
|
5 // which accompanies this distribution, and is available |
|
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
7 // |
|
8 // Initial Contributors: |
|
9 // Nokia Corporation - initial contribution. |
|
10 // |
|
11 // Contributors: |
|
12 // |
|
13 // Description: |
|
14 // SqlDb.dll SQL Database management - client dll |
|
15 // |
|
16 // |
|
17 |
|
18 /** |
|
19 @file |
|
20 */ |
|
21 |
|
22 //#define SYMBIAN_INCLUDE_EXECUTABLE_TRACE |
|
23 #include <e32utrace.mmh> |
|
24 |
|
25 #ifdef SYMBIAN_INCLUDE_EXECUTABLE_TRACE |
|
26 MACRO SQLDB_ENABLE_TRACE |
|
27 #endif |
|
28 |
|
29 TARGET sqldb.dll |
|
30 TARGETTYPE dll |
|
31 |
|
32 UID 0x1000008d 0x10281E18 |
|
33 |
|
34 OS_LAYER_SYSTEMINCLUDE_SYMBIAN |
|
35 USERINCLUDE ../INC |
|
36 USERINCLUDE ../SRC/Client |
|
37 USERINCLUDE ../SRC/Client/IPC |
|
38 USERINCLUDE ../SRC/Common |
|
39 USERINCLUDE ../SRC/Common/IPC |
|
40 USERINCLUDE ../SRC/Common/Trace |
|
41 USERINCLUDE ../SRC/Security |
|
42 //SqlDb includes sqlite3.h header file for the error code macros defined there |
|
43 #ifdef SYMBIAN_USE_SQLITE_VERSION_3_6_4 |
|
44 USERINCLUDE ../SQLite364 |
|
45 #else |
|
46 USERINCLUDE ../SQLite |
|
47 #endif |
|
48 //SqlDb does not use standard C library, but there are some C header files included in sqlite3.h |
|
49 OS_LAYER_ESTLIB_SYSTEMINCLUDE |
|
50 |
|
51 SOURCEPATH ../SRC/Client |
|
52 SOURCE SQLDatabase.cpp SqlDatabaseImpl.cpp SqlStatement.cpp SqlStatementImpl.cpp SqlStream.cpp |
|
53 SOURCE SqlBlob.cpp |
|
54 |
|
55 SOURCEPATH ../SRC/Common |
|
56 SOURCE SqlUtil.cpp SqlBufFlat.cpp SqlBufIterator.cpp |
|
57 |
|
58 SOURCEPATH ../SRC/Client |
|
59 SOURCE SqlDbSession.cpp SqlStmtSession.cpp SqlResourceTest.cpp SqlScalarFullSelect.cpp SqlResourceProfiler.cpp |
|
60 SOURCEPATH ../SRC/Client/IPC |
|
61 SOURCE IPCBuf.cpp |
|
62 SOURCEPATH ../SRC/Common |
|
63 SOURCE SqlSrvStartup.cpp |
|
64 |
|
65 SOURCEPATH ../SRC/Security |
|
66 SOURCE SqlSecurity.cpp SqlSecurityImpl.cpp |
|
67 |
|
68 #ifdef SYMBIAN_INCLUDE_EXECUTABLE_TRACE |
|
69 SOURCEPATH ../SRC/Common/Trace |
|
70 SOURCE UTraceSql.cpp |
|
71 #endif |
|
72 |
|
73 LIBRARY euser.lib efsrv.lib estor.lib |
|
74 |
|
75 VENDORID 0x70000001 |
|
76 CAPABILITY All -Tcb |
|
77 |
|
78 SMPSAFE |
|
79 |
|
80 DEFFILE SqlDb.def |