Jump to content

SQL Query


Recommended Posts

i have a problem in using query in sql...

The problem is, i want to search something in my database...and i want only the data that i search is appear on the search list..i use listview as the searching result..

How i can to do that..???

*sorry for my bad english... :)

Link to comment
Share on other sites

can autoit use the database calls or is it external?

filling up a listview -> read help files - for examples

i read allready the help file and example..still i cannot solve my problem..

can somebody teach me how to solve my problem??

Link to comment
Share on other sites

you first need to answer: WHERE does the data come from??? you need an SQL query (is it from an external program or do you do in autoit?)

then WHERE do you store the query results?? in autoit variables or in temp file ?

then when you have all data use GUICtrlCreateListViewItem() in autoit to display an entry inm listview.??

Link to comment
Share on other sites

you first need to answer: WHERE does the data come from??? you need an SQL query (is it from an external program or do you do in autoit?)

then WHERE do you store the query results?? in autoit variables or in temp file ?

then when you have all data use GUICtrlCreateListViewItem() in autoit to display an entry inm listview.??

I save all my data in myfile.db..i do a SQL query in my autoit program..i dont store the SQL result but i use listview as to show the search result..

The problem is when i use the SQL query, it show all data in the list view include not needed,

I just want the listview to show only the search data result.

i use this as SQL query in my autoit program..

SELECT * FROM [mytable] WHERE [mydata] = '[search keyword]' ORDER BY GROUP;

Example = i want to search today item, but the result show all the item include the yesterday item.

*if you dont understand what i'm saying, i will include my autoit source code...Sorry for my poor english... :)

Link to comment
Share on other sites

Surely that is a problem with your query or the database table. You should have a column with the date the data was created and then add it to your query

SELECT * FROM [mytable] WHERE [mydata] = '[search keyword]' AND [Date] = '[Todays date]' ORDER BY GROUP;

Link to comment
Share on other sites

Surely that is a problem with your query or the database table. You should have a column with the date the data was created and then add it to your query

SELECT * FROM [mytable] WHERE [mydata] = '[search keyword]' AND [Date] = '[Todays date]' ORDER BY GROUP;

sory for the late reply...

thanks for your info...

i appreciate that..

thanks again.... :)

Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...