applescript for sqlite
        Posted  
        
            by 
                user1212108
            
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by user1212108
        
        
        
        Published on 2012-03-29T15:53:37Z
        Indexed on 
            2012/03/29
            17:29 UTC
        
        
        Read the original article
        Hit count: 252
        
I have a Windows app called via Shell from MS Word that reads and writes to Sqlite. I'm porting it to Mac. On windows I have a batch file:
SQLite3.exe pathtodb\databasename <sqlitecommands.txt
This batch calls the Sqlite command line program, attachs the database, and reads the command from sqlitecommands.txt. The sqlitecommands is dynamically modified(by Word VBA) to read (Select) Write (Update) to/from the database.
What is the format of an applescript to do the same thing in Mac OSX?
© Stack Overflow or respective owner