aleph01 Posted September 23, 2013 Share Posted September 23, 2013 Can Autoit manipulate SQL or just arrays created by Autoit? If so, are there any special considerations when doing so? Thanks, _aleph_ Meds. They're not just for breakfast anymore. Link to comment Share on other sites More sharing options...
water Posted September 23, 2013 Share Posted September 23, 2013 Can you please be a bit more specific? SQL is the Structured Query Language. Which DATABASE (MySQL, MS SQL Server, Oracle ...) do you want to manipulate? My UDFs and Tutorials: Spoiler UDFs: Active Directory (NEW 2024-07-28 - Version 1.6.3.0) - Download - General Help & Support - Example Scripts - Wiki ExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example Scripts OutlookEX (2021-11-16 - Version 1.7.0.0) - Download - General Help & Support - Example Scripts - Wiki OutlookEX_GUI (2021-04-13 - Version 1.4.0.0) - Download Outlook Tools (2019-07-22 - Version 0.6.0.0) - Download - General Help & Support - Wiki PowerPoint (2021-08-31 - Version 1.5.0.0) - Download - General Help & Support - Example Scripts - Wiki Task Scheduler (2022-07-28 - Version 1.6.0.1) - Download - General Help & Support - Wiki Standard UDFs: Excel - Example Scripts - Wiki Word - Wiki Tutorials: ADO - Wiki WebDriver - Wiki Link to comment Share on other sites More sharing options...
aleph01 Posted September 23, 2013 Author Share Posted September 23, 2013 Probably MySQL, but possibly MS SQL. I don't know the details of the project I'm looking at taking on just yet. Meds. They're not just for breakfast anymore. Link to comment Share on other sites More sharing options...
water Posted September 23, 2013 Share Posted September 23, 2013 AutoIt can "talk" to any database you can connect to using ADO. There are many examples on the forum how to do so. What have you tried so far? My UDFs and Tutorials: Spoiler UDFs: Active Directory (NEW 2024-07-28 - Version 1.6.3.0) - Download - General Help & Support - Example Scripts - Wiki ExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example Scripts OutlookEX (2021-11-16 - Version 1.7.0.0) - Download - General Help & Support - Example Scripts - Wiki OutlookEX_GUI (2021-04-13 - Version 1.4.0.0) - Download Outlook Tools (2019-07-22 - Version 0.6.0.0) - Download - General Help & Support - Wiki PowerPoint (2021-08-31 - Version 1.5.0.0) - Download - General Help & Support - Example Scripts - Wiki Task Scheduler (2022-07-28 - Version 1.6.0.1) - Download - General Help & Support - Wiki Standard UDFs: Excel - Example Scripts - Wiki Word - Wiki Tutorials: ADO - Wiki WebDriver - Wiki Link to comment Share on other sites More sharing options...
SecretLanguage Posted September 24, 2013 Share Posted September 24, 2013 hope not to invite great conversation, but if array = Noun;Verb and #define ARRAY(type, name, size, initializer) type name[size]; for (int j = 0; j < size; j++) name[j] = initializer would one use specific operator to display characters of ARRAY to the display as Binary numbers instead of ANSI:;Unicode or utf -8? Example use during encryption or hide mode ()Password Link to comment Share on other sites More sharing options...
kylomas Posted September 24, 2013 Share Posted September 24, 2013 It is hard to follow what you are asking and the example code you posted is not AutoIT. Are you looiking for something like this? ; #include <array.au3> ; local $array[15] for $1 = 0 to ubound($array) -1 $array[$1] = stringtobinary(Random(100,1000,1)) Next _arraydisplay($array) Forum Rules Procedure for posting code "I like pigs. Dogs look up to us. Cats look down on us. Pigs treat us as equals." - Sir Winston Churchill Link to comment Share on other sites More sharing options...
SecretLanguage Posted September 24, 2013 Share Posted September 24, 2013 yes, as long as you follow the syntax of autoit arrays should be interpreted ='ly Link to comment Share on other sites More sharing options...
kylomas Posted September 24, 2013 Share Posted September 24, 2013 arrays should be interpreted ='ly What does this mean? (I know that "='ly" is geek speak for equaly) Forum Rules Procedure for posting code "I like pigs. Dogs look up to us. Cats look down on us. Pigs treat us as equals." - Sir Winston Churchill Link to comment Share on other sites More sharing options...
SecretLanguage Posted September 24, 2013 Share Posted September 24, 2013 no: I'm not going to mask geek speak for you but i was simply saying codec priorities would be selected by user or proprietary software Link to comment Share on other sites More sharing options...
kylomas Posted September 24, 2013 Share Posted September 24, 2013 SecretLanguage, In the future you should start a new topic rather than highjacking another's thread. water 1 Forum Rules Procedure for posting code "I like pigs. Dogs look up to us. Cats look down on us. Pigs treat us as equals." - Sir Winston Churchill Link to comment Share on other sites More sharing options...
SecretLanguage Posted September 24, 2013 Share Posted September 24, 2013 no":problem Just did not want to spam Link to comment Share on other sites More sharing options...
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