mysql known bugs

Bug reports and feature requests. New features can only be added to the current development version. Bug-fixes may be back-ported.

Current release: 099 / Current development: 100
Post Reply
RusseL
Forum Regular
Posts: 375
Joined: Fri Feb 20, 2009 8:30 pm

mysql known bugs

Post by RusseL »

I'm testing mysql functions of pol, i think there are some bugs inside, i'll try to post solutions here

Such construction would crash your server:

Code: Select all

program blablabla()
           // first open connection
           var db := SelectDB(connection, "pol");
endprogram

function SelectDB(connection, database)
         return mysql_select_db(connection, database);
endfunction
Solution:

Code: Select all

function SelectDB(byref connection, database)
Post Reply