Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!

sql r41-4

Июл
349
116
Активный
Помогите перевести эти строчки на mysql r41-4, уже все перепробовал
Pawn:
        case 0:
            cache_get_row_count(0, 0, global_str), Int_UnPackMassive(global_str, data_SystemValue);

        case 1:
            for new i; i < 16; i++ do
                cache_get_row_count(0, i, server_data[server_options:i], mysql);
 
Май
79
10
Пользователь
Pawn:
case 0:
    cache_get_row_count(0, global_str);
        Int_UnPackMassive(global_str, data_SystemValue);

case 1:
    for (new i; i < 16; i++)
        cache_get_field_content(0, i, server_data[server_options:i], mysql);
 
Июл
349
116
Активный
заменил строчку с case 1
Pawn:
case 1:
    for (new i; i < 16; i++)
        cache_get_value_name(0, i, server_data[server_options:i], mysql);
}
теперь ошибка
Pawn:
error 035: argument type mismatch (argument 2)
 
Сверху