Home | History | Annotate | Download | only in dist

Lines Matching full:zerrmsg

1006   char *zErrMsg = sqlite3_malloc(nErrMsg);
1007 if( zErrMsg ){
1008 memcpy(zErrMsg, sqlite3_errmsg(db), nErrMsg);
1010 return zErrMsg;
1624 char *zErrMsg = 0;
1633 zErrMsg);
1634 if( zErrMsg ){
1635 fprintf(stderr,"Error: %s\n", zErrMsg);
1636 sqlite3_free(zErrMsg);
1874 char *zErrMsg = 0;
1887 callback, &data, &zErrMsg
1898 callback, &data, &zErrMsg
1902 if( zErrMsg ){
1903 fprintf(stderr,"Error: %s\n", zErrMsg);
1904 sqlite3_free(zErrMsg);
1938 char *zErrMsg = 0;
1942 rc = sqlite3_load_extension(p->db, zFile, zProc, &zErrMsg);
1944 fprintf(stderr, "Error: %s\n", zErrMsg);
1945 sqlite3_free(zErrMsg);
2112 char *zErrMsg = 0;
2158 callback, &data, &zErrMsg);
2169 callback, &data, &zErrMsg
2172 if( zErrMsg ){
2173 fprintf(stderr,"Error: %s\n", zErrMsg);
2174 sqlite3_free(zErrMsg);
2218 char *zErrMsg;
2228 &azResult, &nRow, 0, &zErrMsg
2239 &azResult, &nRow, 0, &zErrMsg
2243 if( zErrMsg ){
2244 fprintf(stderr,"Error: %s\n", zErrMsg);
2245 sqlite3_free(zErrMsg);
2517 char *zErrMsg;
2579 rc = shell_exec(p->db, zSql, shell_callback, p, &zErrMsg);
2581 if( rc || zErrMsg ){
2589 if( zErrMsg!=0 ){
2590 fprintf(stderr, "%s %s\n", zPrefix, zErrMsg);
2591 sqlite3_free(zErrMsg);
2592 zErrMsg = 0;
2780 char *zErrMsg = 0;
2998 rc = shell_exec(data.db, z, shell_callback, &data, &zErrMsg);
2999 if( zErrMsg!=0 ){
3000 fprintf(stderr,"Error: %s\n", zErrMsg);
3021 rc = shell_exec(data.db, zFirstCmd, shell_callback, &data, &zErrMsg);
3022 if( zErrMsg!=0 ){
3023 fprintf(stderr,"Error: %s\n", zErrMsg);