to separate the text you should do this:
string test = "ABC DEF GHI JKL";
string[] splitedText = test.Split(' ');
To use this access :
OleDbCommand CmdSql = new OleDbCommand("Insert into [product] (Kod, [names],price,type," +
"volume,manufacturer,importer) " +
"VALUES (?, ?, ?, ?, ?, ?, ?)";
source
share