Thread: Bot picklock
View Single Post
  #20  
Old 03-20-2010, 07:03 PM
Dunmord
Fire Beetle
 
Join Date: Jan 2010
Posts: 17
Default

Quote:
Originally Posted by Eva Aisling View Post
I don't know what compiling does in depth. I just followed that guide. I think it translates the source code into a code useable by mysql and updates the files you include in the compilation so that you may source the new information into mysql. Does it update your database in mysql automatically? Or are you still supposed to source in the updated files after compiling? Because I still sourced in the updated files after compiling.
The basic idea is:

To compile is to translate a human-readable language(C/C++ in this case) into a machine-readable language (computers do not understand anything but 0s and 1s).

MySQL is nothing but a huge structure with allot of data in it. It does the organizing for you and helps you read/modify data with the MySQL "commands".

C/C++ uses a "connector" to obtain the data from MySQL and do whatever it wants with it.
Reply With Quote