Hi,
I am stuck with SQLite. I have a text file out of MS Access which I want to load into SQLite as it comes from Access. So I use the CREATE TABLE command and afterwards I set an index on the first column with
strSQL = "CREATE UNIQUE INDEX IDX_kennr ON medien('kennummer')"
cmd.CommandText = strSQL
cmd.ExecuteNonQuery
I thought to know that using an the insert into with NULL as entry for the indexed column should generate the next free index value but the column for the index remains empty.
What is my fault?
Can anyone help me?
Thanks in advance
I am stuck with SQLite. I have a text file out of MS Access which I want to load into SQLite as it comes from Access. So I use the CREATE TABLE command and afterwards I set an index on the first column with
strSQL = "CREATE UNIQUE INDEX IDX_kennr ON medien('kennummer')"
cmd.CommandText = strSQL
cmd.ExecuteNonQuery
I thought to know that using an the insert into with NULL as entry for the indexed column should generate the next free index value but the column for the index remains empty.
What is my fault?
Can anyone help me?
Thanks in advance