我正在尝试使用 Pro*C 访问 TimesTen 数据库。在 TimesTen 中创建表的代码是
create table testtable(id number(4) not null primary key, ename char(10));
我使用 Pro*C 从这个表中获取数据。当我使用这个 SQL 时:
select * from testtable where ename like 'wxd'
我没有得到任何结果。但是当我使用这个时:
select * from testtable where ename like 'wxd '
我得到了正确的结果。我必须在田野里填满足够的空间。有没有其他方法可以获得正确的结果?