I did not used never gdb.
Can I post me commands that I must to use

(gdb) run sqlite3
Starting program:  sqlite3
No executable file specified.
Use the "file" or "exec-file" command.
(gdb) run select load_extension('/root/soundex.so');
Starting program:  select load_extension('/root/soundex.so');
No executable file specified.
Use the "file" or "exec-file" command.
(gdb) run select soundex('saverio');
Starting program:  select soundex('saverio');
No executable file specified.
Use the "file" or "exec-file" command.
(gdb) 


(gdb) run sqlite3
Starting program:  sqlite3
No executable file specified.
Use the "file" or "exec-file" command.
(gdb) exec-file select load_extension('/root/soundex.so');
select: No such file or directory.
(gdb) 




> You must have to do a run inside gdb to get sqlite shell 
> working then you can get your segfault 

       
---------------------------------
Inviato da Yahoo! Mail.
La casella di posta intelligente.
_______________________________________________
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to