Troca de <> por "".
This commit is contained in:
parent
d56d4abfa0
commit
180bf90ed4
@ -2,7 +2,7 @@
|
|||||||
** LuaSQL, MySQL driver
|
** LuaSQL, MySQL driver
|
||||||
** Authors: Eduardo Quintao
|
** Authors: Eduardo Quintao
|
||||||
** See Copyright Notice in license.html
|
** See Copyright Notice in license.html
|
||||||
** $Id: ls_mysql.c,v 1.17 2004/11/03 10:46:06 tomas Exp $
|
** $Id: ls_mysql.c,v 1.18 2004/11/17 14:16:52 tomas Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <assert.h>
|
#include <assert.h>
|
||||||
@ -16,11 +16,11 @@
|
|||||||
#define NO_CLIENT_LONG_LONG
|
#define NO_CLIENT_LONG_LONG
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include <mysql.h>
|
#include "mysql.h"
|
||||||
|
|
||||||
#include <lua.h>
|
#include "lua.h"
|
||||||
#include <lauxlib.h>
|
#include "lauxlib.h"
|
||||||
#include <compat-5.1.h>
|
#include "compat-5.1.h"
|
||||||
|
|
||||||
#include "luasql.h"
|
#include "luasql.h"
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
** LuaSQL, Oracle driver
|
** LuaSQL, Oracle driver
|
||||||
** Authors: Tomas Guisasola, Leonardo Godinho
|
** Authors: Tomas Guisasola, Leonardo Godinho
|
||||||
** See Copyright Notice in license.html
|
** See Copyright Notice in license.html
|
||||||
** $Id: ls_oci8.c,v 1.23 2004/11/03 10:46:06 tomas Exp $
|
** $Id: ls_oci8.c,v 1.24 2004/11/17 14:16:52 tomas Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <assert.h>
|
#include <assert.h>
|
||||||
@ -11,14 +11,14 @@
|
|||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <ctype.h>
|
#include <ctype.h>
|
||||||
|
|
||||||
#include <oci.h>
|
#include "oci.h"
|
||||||
#include <oratypes.h>
|
#include "oratypes.h"
|
||||||
#include <ociapr.h>
|
#include "ociapr.h"
|
||||||
#include <ocidem.h>
|
#include "ocidem.h"
|
||||||
|
|
||||||
#include <lua.h>
|
#include "lua.h"
|
||||||
#include <lauxlib.h>
|
#include "lauxlib.h"
|
||||||
#include <compat-5.1.h>
|
#include "compat-5.1.h"
|
||||||
|
|
||||||
#include "luasql.h"
|
#include "luasql.h"
|
||||||
|
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
** Authors: Pedro Rabinovitch, Roberto Ierusalimschy, Diego Nehab,
|
** Authors: Pedro Rabinovitch, Roberto Ierusalimschy, Diego Nehab,
|
||||||
** Tomas Guisasola
|
** Tomas Guisasola
|
||||||
** See Copyright Notice in license.html
|
** See Copyright Notice in license.html
|
||||||
** $Id: ls_odbc.c,v 1.26 2004/11/03 10:46:06 tomas Exp $
|
** $Id: ls_odbc.c,v 1.27 2004/11/17 14:16:52 tomas Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <assert.h>
|
#include <assert.h>
|
||||||
@ -16,12 +16,12 @@
|
|||||||
#include <windows.h>
|
#include <windows.h>
|
||||||
#include <sqlext.h>
|
#include <sqlext.h>
|
||||||
#elif defined(INFORMIX)
|
#elif defined(INFORMIX)
|
||||||
#include <infxcli.h>
|
#include "infxcli.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include <lua.h>
|
#include "lua.h"
|
||||||
#include <lauxlib.h>
|
#include "lauxlib.h"
|
||||||
#include <compat-5.1.h>
|
#include "compat-5.1.h"
|
||||||
|
|
||||||
#include "luasql.h"
|
#include "luasql.h"
|
||||||
|
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
** Authors: Pedro Rabinovitch, Roberto Ierusalimschy, Carlos Cassino
|
** Authors: Pedro Rabinovitch, Roberto Ierusalimschy, Carlos Cassino
|
||||||
** Tomas Guisasola, Eduardo Quintao
|
** Tomas Guisasola, Eduardo Quintao
|
||||||
** See Copyright Notice in license.html
|
** See Copyright Notice in license.html
|
||||||
** $Id: ls_postgres.c,v 1.1 2004/11/08 15:55:23 tomas Exp $
|
** $Id: ls_postgres.c,v 1.2 2004/11/17 14:16:52 tomas Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <assert.h>
|
#include <assert.h>
|
||||||
@ -12,11 +12,11 @@
|
|||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <ctype.h>
|
#include <ctype.h>
|
||||||
|
|
||||||
#include <libpq-fe.h>
|
#include "libpq-fe.h"
|
||||||
|
|
||||||
#include <lua.h>
|
#include "lua.h"
|
||||||
#include <lauxlib.h>
|
#include "lauxlib.h"
|
||||||
#include <compat-5.1.h>
|
#include "compat-5.1.h"
|
||||||
|
|
||||||
#include "luasql.h"
|
#include "luasql.h"
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
** LuaSQL, SQLite driver
|
** LuaSQL, SQLite driver
|
||||||
** Author: Tiago Dionizio, Eduardo Quintao
|
** Author: Tiago Dionizio, Eduardo Quintao
|
||||||
** See Copyright Notice in license.html
|
** See Copyright Notice in license.html
|
||||||
** $Id: ls_sqlite.c,v 1.6 2004/11/03 10:46:06 tomas Exp $
|
** $Id: ls_sqlite.c,v 1.7 2004/11/17 14:16:52 tomas Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
@ -10,11 +10,11 @@
|
|||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <ctype.h>
|
#include <ctype.h>
|
||||||
|
|
||||||
#include <sqlite.h>
|
#include "sqlite.h"
|
||||||
|
|
||||||
#include <lua.h>
|
#include "lua.h"
|
||||||
#include <lauxlib.h>
|
#include "lauxlib.h"
|
||||||
#include <compat-5.1.h>
|
#include "compat-5.1.h"
|
||||||
|
|
||||||
#include "luasql.h"
|
#include "luasql.h"
|
||||||
|
|
||||||
|
@ -1,13 +1,13 @@
|
|||||||
/*
|
/*
|
||||||
** $Id: luasql.c,v 1.13 2004/11/03 10:46:06 tomas Exp $
|
** $Id: luasql.c,v 1.14 2004/11/17 14:16:52 tomas Exp $
|
||||||
** See Copyright Notice in license.html
|
** See Copyright Notice in license.html
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
|
||||||
#include <lua.h>
|
#include "lua.h"
|
||||||
#include <lauxlib.h>
|
#include "lauxlib.h"
|
||||||
#include <compat-5.1.h>
|
#include "compat-5.1.h"
|
||||||
|
|
||||||
#include "luasql.h"
|
#include "luasql.h"
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user