| View previous topic :: View next topic |
| Author |
Message |
silkcom
Joined: 23 Jan 2008 Posts: 162
|
Posted: Tue Feb 17, 2009 5:16 pm Post subject: SQLite - is it ready yet? |
|
|
I've been searching the forum, but only see old discussions on how cool it would be to have SQLite. Granted I haven't searched everything.
I'm wondering, is there an AHK file yet that lets you use SQLite quickly and easily? |
|
| Back to top |
|
 |
BoBoł Guest
|
Posted: Tue Feb 17, 2009 5:22 pm Post subject: |
|
|
| Quote: | AHKLitening - Wrapper/helper lib for SQLitening (SQlite)
[ Goto page: 1, 2 ]
#INCLUDE SQLite.ahk - Functions to access SQLite3 DB's
[ Goto page: 1, 2, 3 ] | What about to dig deeper  |
|
| Back to top |
|
 |
daonlyfreez
Joined: 16 Mar 2005 Posts: 949 Location: Berlin
|
|
| Back to top |
|
 |
silkcom
Joined: 23 Jan 2008 Posts: 162
|
Posted: Tue Feb 17, 2009 5:32 pm Post subject: |
|
|
| This is from 2006, how is it working? Do we have more example scripts? |
|
| Back to top |
|
 |
Maxmax14
Joined: 30 Mar 2008 Posts: 23 Location: France 14
|
Posted: Tue Feb 24, 2009 8:37 pm Post subject: SQLite : Program to use SQLite |
|
|
Hello,
I am working on an ahk program to manipulate SQLite databases
I will put it in the forum when it will be (almost) finished.
Program will do a little bit like other free programs on the web : I took ideas from : sqlite3Explorer,sqlite_Browser, sqliteadmin, SQLiteSpy
If you want I can try to give a first test version. I use SQLite.ahk but I get some problems for some functions (like ATTACH database)
MaxMax14 |
|
| Back to top |
|
 |
silkcom-offline Guest
|
Posted: Tue Feb 24, 2009 9:40 pm Post subject: |
|
|
i would be interested yes .
I'd like one where you simply setup a few variables at the top, like
db_name = ...
that then gives you the ability to do
query = query_db(db_name, sql)
loop
row = fetch_row(query)
if(row)
...
else
break
And, insert = insert_db(db_name, sql)
that would be enough for me . |
|
| Back to top |
|
 |
Maxmax14
Joined: 30 Mar 2008 Posts: 23 Location: France 14
|
|
| Back to top |
|
 |
|