Claudio Bezerra Leopoldino <[EMAIL PROTECTED]> writes: > May someone tell me a clue to execute the SQLite > utility in linux environment? Or a need to compile the > source code to use the utility?
> ====================================== > [EMAIL PROTECTED] SQLite]$ ls -l > total 372 > -rwxr-xr-x 1 bezerral Afp10-GP 374132 Mai 19 15:22 > sqlite3-3.2.1.bin > [EMAIL PROTECTED] SQLite]$ > [EMAIL PROTECTED] SQLite]$ sqlite3-3.2.1.bin > bash: sqlite3-3.2.1.bin: command not found > [EMAIL PROTECTED] SQLite]$ > [EMAIL PROTECTED] SQLite]$ Try: [EMAIL PROTECTED] SQLite]$ ./sqlite3-3.2.1.bin Note the "./" at the beginning, since current directory is often not in your path. Derrell

