Hi,
I will create table in one existing database. 'essai'.
$link_id = odbc_connect("essai","","");
$requete="Create table personne(age long primary key)";
$essai=odbc_do($link_id,$requete);
The Error:
Warning: SQL error: [Microsoft][ODBC Microsoft Access Driver] Cannot modify the design of table 'personne'. It is in a read-only database., SQL state 42000 in SQLExecDirect in c:\inetpub\wwwroot\pgm\index.php on line 36
Help please
Yvo😕