supergg02 Posted March 18, 2005 Posted March 18, 2005 As you know, there is no build in autoit function to manage (create, update, short, extract...) databases. But, it may be possible to use 2-dimension arrays (row, colum). thinking about building functions engine to do some think like "sql requests"...
RPC Posted March 19, 2005 Posted March 19, 2005 I've started kicking around a similar idea for at least reading and writing comma delimited files. Something like:_CSVGet(FileName,RecordBuffer,Record)and _CSVAdd(FileName,RecordBuffer)Where RecordBuffer would be an array with X elements. Each element would be populated with a field from the comma delimited file. So RecordBuffer[1] would contain the value from the first field and RecordBuffer[2] the second field etc...An other possiblity is to create a dll with Set(), Get(), Add() Change() and Delete() function to manipulate a data file type of choice. The only thing I'm not clear on is how to get the information to and from the DLL and AutoIt script.RPC As you know, there is no build in autoit function to manage (create, update, short, extract...) databases. But, it may be possible to use 2-dimension arrays (row, colum).thinking about building functions engine to do some think like "sql requests"...<{POST_SNAPBACK}>
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now