Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Connecting to MySQL using Assembly Language

Status
Not open for further replies.

jcr1ks

Programmer
May 19, 2005
1
US
I'm a new person in the assembly world. Is it possible to connect to a MySQL database with Assembly Language. If so how?
 
I think it is, but is it worth the effort?

Assembly does its job at the byte, word, and/or double word
level of your computer. It would be a VERY time consuming
task if you'd want to write an assembly program from
scratch that is capable of interpreting a mySQL dbase file.

Judging by the length of your post, I don't believe you are
a person who has a lot of time on his hands :p

Maybe someone else has written a bunch of code that does the
trick, but since you're new to the language, you would not
know how to use it..

I recommend learning assembly first, before trying to use
it..
 
Yes, it is possible to connect to the MySQL server using assembly language. I have written a small assembly program that does this. MySQL server has C API. The libmysql.dll implements the C API. All I did was write asm code to call the C functions in libmysql.dll and it was quite easy but coding is tedious. :)

Best Regards,
Yeoh
--


 
I am in the same position to solve that problem.If u have any solution tell me about that.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top