It's an assignment from my teacher for this semester.I make database in mysql and with wizard in Delph i have upload it. It' made with ADO... Now how i can search that database in delphi and how to manipulate with...
All I have now is interface without sence...
Help me with the tutorial guys...
Delphi connection
Started by zeroo, May 15 2008 07:36 AM
4 replies to this topic
#1
Posted 15 May 2008 - 07:36 AM
|
|
|
#2
Posted 15 May 2008 - 08:28 AM
You'll need to learn SQL for data manipulation. W3Schools Online Web Tutorials has a good tutorial on it.
#3
Posted 15 May 2008 - 09:41 AM
Tnx...But i Know how to manipulate with mysql....but don't know how to put that concept in delphi...I need aplication in delphi where i can search my database...for example :
select * from client;
select * from article where price>4.00;
select * from client;
select * from article where price>4.00;
#4
Posted 17 May 2008 - 02:10 PM
You will need a TQuery object that is hooked to the ADO connection. You use TQuery.SQL.* to .Clear, .Add(), .Close, and .Open connections. You extract data using TQuery.ValueByName('FIELD_NAME').AsString, etc.
#5
Posted 27 July 2008 - 08:58 AM
You may go with w3 class , it will provide you knowledge.


Sign In
Create Account

Back to top









