thanks for help, my second name is "nervious"
it was a little mistake, i mean this one "yxz" oops,
there is no way, tried with "*b" or this
"local tSQL
put "INSERT INTO Example(" & return & \
"tname, name)" & \
"VALUES(" & return & \
":1, :2,)" into tSQL
local tFirstname
put field "name" into tname
..................
local tResult
revExecuteSQL gConID tSQL, "tname"
put the result into tResult "
nothing appears
only a new schuelerID nothing in column
tell me " number of rows added: 1
in another way it tells 2 rows of 2 columns added, but the same, nothing in DB, please dont ask me this way, nothing in db and clich away, oops
its not a problem with sqlite database browser, in textedit its the same, columns ok , but nothing of data
i hve read many of sqlite, but i cant find the mistake, i think its a problem with "," or ";"
the code of table Schueler
"on preopenstack
global gConId
local tSQL, tResult
put "create table Schueler(schuelerID integer primary key autoincrement,name Text,vorname Text)" into tSQL
revExecuteSQL gConID, tSQL
put the result into tResult
if the result is not empty then
answer warning the result
exit preopenstack
end if
answer information "Number of Tables added" & tResult
end preopenstack
"
???????
then i try this
revExecuteSQL gConID,"insert into Schueler(SchuelerID,name, vorname) VALUES(:1,:2);", tname, tvorname
the answer is " number of added rows : 2 values in 3 columns"
but there is no bb or yyy
Ralle