ID:160132
 
Recently, I have been trying to use Alathon's http://www.byond.com/developer/Alathon/MySQL but I have been getting two errors at compile when I open it. I dunno if its somthing I havent input in yet or because somthings not working?

MySQL.dm:78:error:GetColumnData :undefined proc
tables.dm:173:error:Query.GetColumnData:undefined proc

Line 46:  GetColumnData()


Line 173:          var/list/data = Query.GetColumnData()
Yeah, sorry. That library is a bit outdated. The proc that is undefined is a proc inside the Dantom.DB library which is now called 'GetRowData()' and not 'GetColumnData()'. Change the two calls appropriately and things will work again.

Unless you explicitly want the objects-emulating-tables behavior, I'd check out SimpleMySQL instead. What are the specific needs you have?
In response to Alathon
Hey, thanks for the reply. I am just trying to have my game save to Mysql database. Instead of all the other options.