Changeset 923 for trunk/zoo-project/zoo-kernel
- Timestamp:
- May 27, 2019, 3:25:42 PM (6 years ago)
- Location:
- trunk/zoo-project/zoo-kernel
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/zoo-project/zoo-kernel/response_print.h
r921 r923 64 64 #include <sys/stat.h> 65 65 #include <sys/types.h> 66 //#include "cgic.h"67 66 #ifndef WIN32 68 67 #include <sys/ipc.h> -
trunk/zoo-project/zoo-kernel/sqlapi.c
r922 r923 58 58 * @return the OGR connection string 59 59 */ 60 c onst char* _createInitString(maps* conf,const char* key){60 char* _createInitString(maps* conf,const char* key){ 61 61 char* res=NULL; 62 62 char keywords[6][14]={ … … 109 109 * @return the OGR connection string 110 110 */ 111 c onst char* createInitString(maps* conf){111 char* createInitString(maps* conf){ 112 112 return _createInitString(conf,"database"); 113 113 } … … 120 120 */ 121 121 int _init_sql(maps* conf,const char* key){ 122 c onst char* sqlInitString=_createInitString(conf,key);122 char* sqlInitString=_createInitString(conf,key); 123 123 #ifdef SQL_DEBUG 124 124 fprintf(stderr,"Try to connect to: %s %s !\n",key,sqlInitString); -
trunk/zoo-project/zoo-kernel/sqlapi.h
r921 r923 53 53 54 54 #ifdef META_DB 55 ZOO_DLL_EXPORT c onst char* _createInitString(maps*,const char*);55 ZOO_DLL_EXPORT char* _createInitString(maps*,const char*); 56 56 ZOO_DLL_EXPORT int _init_sql(maps*,const char*); 57 57 ZOO_DLL_EXPORT OGRLayer *fetchSql(maps*,int,const char*);
Note: See TracChangeset
for help on using the changeset viewer.