Actually my "Everyone" had full power !!! 🙂
But I found the trick... Not so much actually.
Under MS Access, when you put an "auto increment" field and your query value is empty --> then error like:
"SQL error: [Microsoft][ODBC Microsoft Access Driver] Data type mismatch in criteria expression., SQL state 22005 in SQLExecDirect in C:\Inetpub\wwwroot...php3"
My syntaxe is this one so:
$connect = odbc_connect("mydb","","");
$query = "insert into authentification values ('4','company4','login4','paswd4','name4')";
$result = odbc_exec($connect, $query);
odbc_close($connect);
-->So cannot put $query = "insert into authentification values ('','company5','login5','paswd5','name5')";
for the next query...
Any idea... Thnks.
Paul