Buenas,
Creas la tabla PEDIDO:
Código SQL:
Ver originalst.executeUpdate("create table PEDIDO(pedido_id int(10) NOT NULL AUTO_INCREMENT, usuario_id int(10), date timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,preicio int(11) NOT NULL,PRIMARY KEY (pedido_id))");
Y justo después le haces un select?
Código SQL:
Ver originalResultSet rs = st.executeQuery("select * from PEDIDO");
Eso no tiene sentido porque nunca va a tener filas.
Tambíen intentas aceder luego a columnas que no existen:
Código SQL:
Ver originalString sdate=rs.getString("");
String spreis=rs.getString("Preis");
Ese error que posteas se produce al realizar un Insert, por lo que lo más posible es que se produzca en esta linea
Código SQL:
Ver originalst.executeUpdate("insert into Person values ('"+telprecio+"')");
¿La tabla Person solo tiene un campo?
Un saludo