Diff for /rpl/src/instructions_s10.c between versions 1.66 and 1.67

version 1.66, 2012/12/19 09:58:26 version 1.67, 2012/12/20 15:32:52
Line 657  instruction_sqlconnect(struct_processus Line 657  instruction_sqlconnect(struct_processus
   
         printf("    { \"mysql\" \"server\" \"database\" "          printf("    { \"mysql\" \"server\" \"database\" "
                 "\"user\" \"password\" } SQLCONNECT\n");                  "\"user\" \"password\" } SQLCONNECT\n");
           printf("    { \"sqlite\" \"file\" } SQLCONNECT\n");
         printf("    { \"postgresql:iso-8859-1\" \"server\" "          printf("    { \"postgresql:iso-8859-1\" \"server\" "
                 "\"database\" \"user\" \"password\" port }\n");                  "\"database\" \"user\" \"password\" port }\n");
         printf("          SQLCONNECT\n");          printf("          SQLCONNECT\n");
Line 889  instruction_sqldisconnect(struct_process Line 890  instruction_sqldisconnect(struct_process
                     drapeau = d_faux;                      drapeau = d_faux;
 #                   endif  #                   endif
                 }                  }
                   else if (strcmp((*((struct_connecteur_sql *) (*s_objet).objet))
                           .type, "SQLITE") == 0)
                   {
                       if ((*((struct_connecteur_sql *) (*(*l_element_courant)
                               .donnee).objet)).descripteur.sqlite ==
                               (*((struct_connecteur_sql *) (*s_objet).objet))
                               .descripteur.sqlite)
                       {
                           drapeau = d_vrai;
                       }
                       else
                       {
                           drapeau = d_faux;
                       }
                   }
                 else                  else
                 {                  {
                     BUG(1, printf("SQL type '%s' not allowed!",                      BUG(1, printf("SQL type '%s' not allowed!",

Removed from v.1.66  
changed lines
  Added in v.1.67


CVSweb interface <joel.bertrand@systella.fr>