I would like to request the addition of mysql to the application. The only worthy methods that are in use today are by $dll or $com. Even then the use of mysql is nearly constant at times and the use of $dll will lag the application a lot.

/mysql_connect
/mysql_query
/mysql_close

Also since multiple queries are queued in a connect session. This may even be simplified by using an alias like $comcall or specifying a signal event to call, or last but not least instilling some sort of events as with on *:sockopen:*:{

on *:mysqlopen:*:{
}
on *:mysqlresult:*:{
}
on *:mysqlclose:*:{
}

This would make a lot of lives easier I know. At the very least it would add another spectrum of events to follow.