Не сохраняет в базе данных
#1

Загружает нормально:
PHP код:
public LoadFarmCallback()
{
    new 
rowsfields;
    
cache_get_data(rowsfields);
    if(
rows 0)
    {
        for(new 
0rowst++)//цикл всех
        
{
            if(
== 0)
            {
                
AppleFarm[1][Bank] = cache_get_row_int(t1);
                
AppleFarm[1][AppleCost] = cache_get_row_int(t2);
                
AppleFarm[1][WorkCost] = cache_get_row_int(t3);
                
AppleFarm[1][AppleDobr] = cache_get_row_int(t4);
                
AppleFarm[1][AppleProduct] = cache_get_row_int(t5);
                
AppleFarm[1][AppleMaterial] = cache_get_row_int(t6);
                
cache_get_field_content(t"Owner"AppleFarm[1][Owner], Connection);
                
printf("%d",AppleFarm[1][Bank]);
                
printf("%s",AppleFarm[1][Owner]);
                
AppleFarm[1][Bank] = 228;
                
printf("%d",AppleFarm[1][Bank]);
            }
        }
    }

Но не сохраняет. Ошибок в логе нету
PHP код:
public SaveFarmCallback()
{
    new 
query[512];
    
mysql_format(Connectionquerysizeof(query),"UPDATE `farms` SET `Bank` = '%d', `ProductCost` = '%d', `WorkCost` = '%d', `Dobr` = '%d', `Product` = '%d', `Material` = '%d', `Owner` = '%s' WHERE `id`=1",
    
AppleFarm[1][Bank],
    
AppleFarm[1][AppleCost],
    
AppleFarm[1][WorkCost],
    
AppleFarm[1][AppleDobr],
    
AppleFarm[1][AppleProduct],
    
AppleFarm[1][AppleMaterial],
    
AppleFarm[1][Owner]);
    
mysql_function_query(Connectionqueryfalse"""");
    
printf("%s",query);
    return 
true;

Reply


Messages In This Thread

Forum Jump:


Users browsing this thread: 1 Guest(s)