Hello...
I want to create MS Access 2003 tables programmatically using ADO.NET. If I have:
create table ADMINISTRADOR
(
AdmId AUTOINCREMENT not null,
RolId INTEGER not null,
AdmNombres TEXT(100) not null,
AdmApellidos TEXT(100) not null,
AdmTelefono TEXT(30),
AdmLogin TEXT(20) not null...