1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-08 14:02:16 +03:00

Added "const" to lots of "char*" parameters in the API. (CVS 298)

FossilOrigin-Name: 1c448f1fd2a2e103e7464df896174534d02152ed
This commit is contained in:
drh
2001-11-03 23:57:09 +00:00
parent a8b38d286e
commit 9f71c2e002
6 changed files with 24 additions and 24 deletions

View File

@@ -116,7 +116,7 @@ static int sqlite_get_table_cb(void *pArg, int nCol, char **argv, char **colv){
*/
int sqlite_get_table(
sqlite *db, /* The database on which the SQL executes */
char *zSql, /* The SQL to be executed */
const char *zSql, /* The SQL to be executed */
char ***pazResult, /* Write the result table here */
int *pnRow, /* Write the number of rows in the result here */
int *pnColumn, /* Write the number of columns of result here */