创建并设置数据库后,我创建了一个新架构并添加了 一张桌子。我在sql剪贴簿中使用了以下代码来创建架构和表
while True:
os.system('iperf -c ' + server_address + ' -u -p 50001 -b ' + str(bandwidth) + 'M -i 1')
如果我尝试执行以下请求,则可以创建与数据库的连接,但是会不断收到sql异常,该异常表明我的方案不存在。
create Schema freshSchema;
create table freshSchema.ftable
(
id integer not null,
name varchar(30) not null,
primary Key(id)
);
insert into freshSchema.ftable values
(1, 'test1');
insert into freshSchema.ftable values
(2, 'test2');
insert into freshSchema.ftable values
(3, 'test3');