IonicWind Software

Aurora Compiler => General Discussion => Topic started by: Rock Ridge Farm (Larry) on January 18, 2006, 03:53:58 PM

Title: Next things I want to do
Post by: Rock Ridge Farm (Larry) on January 18, 2006, 03:53:58 PM
The next things I would like to do:
    1.  Request data from a web site.
            Get a stock quote.
    2.  Create a pop-up and get user input in a listview.
            Prompt for input data.
    3.  Access a database using ODBC.
            I want to talk to a sql server.

If any of these things can currently be done - I could use the help getting started.
Title: Re: Next things I want to do
Post by: Zen on January 18, 2006, 04:21:28 PM
Well i maybe able to help you on some of them. Depends how much time you have. I am a little busy at the moment bu i am still trying to get as much done on the common classes as i can. You can use the RAW common class and talk to a HTTP server if you know basic HTTP commands.

e.g. HTTP/1.0 GET /

that should send you back the index page of a website. Some server want more, such as Accept type and Connection headers. Are you after getting the data from a Microsoft SQL server or a MySQL server?

I am writing a common class for both (currently working on MySQL) you just need a little patience lol.

Lewis
Title: Re: Next things I want to do
Post by: Parker on January 18, 2006, 05:23:09 PM
Paul is writing an ODBC library, Lewis is going to write an HTTP class eventually, I know nothing of it though so I can't help there, sorry.

For a popup window, you just make a dialog and use DoModal or ShowDialog to pop it up, and you can return a value in CloseDialog. For example, if you CloseDialog(3); then you will get that value 3 from the DoModal call x = DoModal();. If you need to return more than just an interger, you can perform some operations on receiving the close message.
Title: Re: Next things I want to do
Post by: Zen on January 18, 2006, 06:05:27 PM
I would really recomend using a direct connection to MySQL rather than using the MyODBC driver as it seems to be quite a lot slower. Its ok for simple apps but if you are making complex database applications i would use my MySQL class once it is complete.

Lewis
Title: Re: Next things I want to do
Post by: Rock Ridge Farm (Larry) on January 19, 2006, 06:38:25 AM
OK
Is it done yet?
Is it done yet?
.
.
.
.
.
:)
Title: Re: Next things I want to do
Post by: Zen on January 19, 2006, 06:42:07 AM
He He. Not yet. Hopefully soon though.

Lewis