Mr.No
-
Total Posts
:
7
- Scores: 0
-
Reward points
:
0
- Joined: 11/18/2005
-
Status: offline
|
Embedded Database
Wednesday, September 13, 2006 6:32 PM
( permalink)
Hi I'm looking for a small footprint embedded database such as SQLite that I could use with my VBScript scripts. It should ideally hold in a single file and shouldn't be too resource hungry on the machine. Thanks
|
|
|
|
Snipah
-
Total Posts
:
1339
- Scores: 8
-
Reward points
:
0
- Joined: 11/1/2004
- Location: Scotland
-
Status: offline
|
RE: Embedded Database
Wednesday, September 13, 2006 7:00 PM
( permalink)
wat do you wish to store in that database?
|
|
|
|
Mr.No
-
Total Posts
:
7
- Scores: 0
-
Reward points
:
0
- Joined: 11/18/2005
-
Status: offline
|
RE: Embedded Database
Thursday, September 14, 2006 1:48 AM
( permalink)
I'd like to use the embedded database as a temporary storage for soting, grouping for onward output creatiion. Let me elaborate on my task. I have a VB6 DLL that reads data from a proprietary format and exposes a fabricated ADO recordset. My VBScript script instantiates the DLL, and processes one batch at a time. So what i want is to proceed as follows: - Instantiate the DLL
- Pick up a batch and get a fabricated recordset from the DLL
- Load the recordset into a work table in my database
- Repeat steps 2 and 3 until I've read all available batches
- Use the loaded data to generate summaries, perform groupings etc.
I can of course do this using a standard database like SQL server or Access but I prefer the simple file approach of embedded databases like Sqlite. Cheers
|
|
|
|
Snipah
-
Total Posts
:
1339
- Scores: 8
-
Reward points
:
0
- Joined: 11/1/2004
- Location: Scotland
-
Status: offline
|
RE: Embedded Database
Thursday, September 14, 2006 8:11 AM
( permalink)
This sounds that an Application (VB) can better handle this (and would) than VBScript, which is superb in administrative tasks....
|
|
|
|
Mr.No
-
Total Posts
:
7
- Scores: 0
-
Reward points
:
0
- Joined: 11/18/2005
-
Status: offline
|
RE: Embedded Database
Thursday, September 14, 2006 5:51 PM
( permalink)
|
|
|
|