首页 > 开发 > 综合 > 正文

Linux数据库大比拚(二)

2024-07-21 02:12:51
字体:
来源:转载
供稿:网友
菜鸟学堂:
为了测试并比较3个数据库管理系统,我当然需要一个数据库来管理他们。在读完了《sql傻瓜书》后,我有了一些如何设计现实的数据库的基本知识,因此我拣选了一特别无聊的真实世界情形(一个因特网书店,其他?)并且写下了一个小型数据库设计以便探讨一点sql的能力。
  
  在这个数据库里有5个表,book保存可得到的书的登记信息;customer包含登记的顾客。对每份订单,bookorder创建一行,参照其顾客。对每个定购的项目,在order_position里引用它的订单号。作为一种奖励,针对书的排名我增加了一rating表。
  
  下列的sql代码可装入到一个数据库系统的sql监控程序并且被接受应该没有任何问题。所有的表在创建前被删除因此确保他们不会在创建之前已经存在。
  
   
  
  drop table book;
  create table book (
  article_no integer primary key,
  author_first_names character(30),
  author_last_names character(30),
  title character(30),
  isbn character(13) unique,
  wholesale_price numeric(4,2),
  retail_price numeric(4,2),
  copies_available integer
  );
  drop table customer;
  create table customer (
  customer_no integer primary key,
  first_names character(30),
  last_names character(30),
  street character(30),
  house_no smallint,
  postcode character(7),
  town character(30),
  iso_country_code character(2)
  );
  drop table bookorder;
  create table bookorder (
  order_no integer primary key,
  customer_no integer not null,
  ordered date,
delivery date,
  status character(8)
  check (status in (′accepted′,
  ′delayed′,
  ′shipped′,
  ′returned′,
  ′paid′)),
  constraint customer_fk foreign key (customer_no)
  references kunde (kundenname)
  );
  drop table order_position;
  create table order_position (
  position_no integer primary key,
  order_no integer not null,
  article_no integer not null,
  number smallint,
  constraint order_fk foreign key (order_no)
  references bookorder (order_no),
  constraint book_fk foreign key (article_no)
  references book (article_no)
  );
  drop table rating;
  create table rating (
  rating_no integer primary key,
  article_no integer not null,
  score numeric(1,0),
  comment character varying(300),
  constraint book_fk foreign key (article_no)
  references book (article_no)
  );
  当然,这是一个极其简单的数据库。它看上去真实,但是它不适用于真实世界的应。它不保存顾客记录或任何东西,并且它甚至没有书的出版商的列。它只是一个测试环境。
  
  注意我不想花大气力强制customer.iso_country_code为今天是实际有效的编码。我在代码做了一点限制以测试数据库系统是否接受他们;我没尝试使数据库无懈可击。
  
  改变设计适应postgresql
  当我将遵循ansi标准的create table语句装入postgresql的psql监控视程序是,我遇到的困难是很少的。我得到一些警告:外部关键字限制被接受但还没有实现,而且我不得不裁减rating的comment字段到255个字符,因为这是postgresql的character varying类型的字段的最大字段宽度。系统为存储大量数据提供blob数据类型,但是它们不在标准版本内,因此我决定了不使用他们。另外的问题是相当愚蠢--因为我不能找到有关postgresql如何强制numeric到c数据类型,也因为我不想使用float以避免舍入,我决定使得货币字段为分值(cent)的整数数字。
  我最后得到了这个略有不同的脚本:
  
  drop table book;
  create table book (
  article_no integer primary key,
  author_first_names character(30),
  author_last_names character(30),
  title character(30),
  isbn character(13) unique,
  wholesale_price integer,
  retail_price integer,
  copies_available integer
  );
  drop table customer;
  create table customer (
  customer_no integer primary key,
  first_names character(30),
  last_names character(30),
  street character(30),
  house_no smallint,
  postcode character(7),
  town character(30),
  iso_country_code character(2)
  );
  drop table bookorder;
  create table bookorder (
  order_no integer primary key,
  customer_no integer not null,
  ordered date,
  delivery date,
  status character(8)
  check (status in (′accepted′,
  ′delayed′,
  ′shipped′,
  ′returned′,
  ′paid′)),
  constraint customer_fk foreign key (customer_no)
  references kunde (kundenname)
  );
  drop table order_position; 
  create table order_position (
  position_no integer primary key,
  order_no integer not null,
  article_no integer not null,
  number smallint,
  constraint order_fk foreign key (order_no)
  references bookorder (order_no),
  constraint book_fk foreign key (article_no)
  references book (article_no)
  );
  drop table rating;
  create table rating (
  rating_no integer primary key,
  article_no integer not null,
  score smallint,
  comment character varying(255),
  constraint book_fk foreign key (article_no)
  references book (article_no)
  );
   
  
  使设计适应mysql
  mysql象postgresql一样忽略外部关键字的限制,但是它搞了个unique限制。最后的脚本与postgresql脚本差不多:
  
  drop table book;
  create table book (
  article_no integer primary key,
  author_first_names character(30),
  author_last_names character(30),
  title character(30),
  isbn character(13),
  wholesale_price integer,
  retail_price integer,
  copies_available integer
  );
  drop table customer;
  create table customer (
  customer_no integer primary key, 
  first_names character(30),
  last_names character(30),
  street character(30),
  house_no smallint,
  postcode character(7),
  town character(30),
  iso_country_code character(2)
  );
  drop table bookorder;
  create table bookorder (
  order_no integer primary key,
  customer_no integer not null,
  ordered date,
  delivery date,
  status character(8),
  constraint customer_fk foreign key (customer_no)
  references kunde (kundenname)
  );
  drop table order_position;
  create table order_position (
  position_no integer primary key,
  order_no integer not null,
  article_no integer not null,
  number smallint,
  constraint order_fk foreign key (order_no)
  references bookorder (order_no),
  constraint book_fk foreign key (article_no)
  references book (article_no)
  );
  drop table rating;
  create table rating (
  rating_no integer primary key,
  article_no integer not null,
  score numeric(1,0),
  comment character varying(255),
  constraint book_fk foreign key (article_no)
  references book (article_no) 
  );
  使设计适应 msql
  因为msql是一个精简的数据库管理器(的确,有些人可能怀疑mysql和msql是否是数据库管理系统),它放弃了大多数sql的功能而仅仅接受sql的一个严格限制的子集。这样,msql的脚本看上有很大不同:
  
  drop table book
  create table book (
  article_no integer not null,
  author_first_names character(30),
  author_last_names character(30),
  title character(30),
  isbn character(13),
  wholesale_price money,
  retail_price money,
  copies_available integer
  )
  drop table customer
  create table customer (
  customer_no integer not null,
  first_names character(30),
  last_names character(30),
  street character(30),
  house_no smallint,
  postcode character(7),
  town character(30),
  iso_country_code character(2)
  )
  drop table bookorder
  create table bookorder (
  order_no integer not null,
  customer_no integer not null,
  ordered date,
  delivery date,
  status character(1)
  )
  drop table order_position
  create table order_position (
  position_no integer not null,
  order_no integer not null,
  article_no integer not null, 
 number smallint
  )
  drop table rating
  create table rating (
  rating_no integer not null,
  article_no integer not null,
  score smallint,
  comment text(255)
  )
  几乎所有的约束都不见了,并且numeric和character varying分别由money和text代替。
  
  在msql的监视程序中有令人沮丧的不足:它似乎不能接受从标准输入输入sql脚本,这样, 需要剪切/粘贴代码。msql也讨厌分号;最终我只能一个一个地输入命令并用/g(“go”斜杠命令)终止每条命令 。
  
  实现测试客户
  为了比较3个数据库管理器,我决定为执行在bookstore数据库上的交易的目的用c写了一个测试客户。结果,我实现了一些操作,它们能比较api。为了性能比较,我随后充分实现了它们,并且把一个非交互式模式加入客户程序,因此它能自己运行,产生随意的数据且随机执行交易。
  
  我决定了在样品数据库上实现下列行动:
  
  增加一本新书: insert into book (...) values (...);
  删除一本存在的书: delete from book where article_no=...;
  增加一个顾客: insert into customer (...) values (...);
  删除一个顾客: delete from customer where customer_no=...;
  订书的一个顾客: insert into bookorder (...) values (...); insert into order_position (...) values (...);;
  评估一本书的一个顾客: insert into rating (...) values (...);
  改变一份订单的状态: update bookorder set status=... where order_no=...;
  然后,能生成下列报表:
  
  书籍列表: select * from book;
  顾客列表: select * from customer;
  正在投递的交货表,按状态排序: select * from bookorder order by status;
  书籍的利润额,最后有平均值: select retail_price-wholesale_price from book; select avg(retail_price-wholesale_price) from book; 
  书评、评级和为一本书的平均评级: select * from rating where article_no=...; select avg(score) from rating where article_no=...;
  将客户带入postgresql的生活
  关于用c编程postgresql的好处是你能使用嵌入式sql。(而且,至少我喜欢它)它不是很好地文档化,但是esql预处理器ecpg运行并能产生postgresql接口代码就好。sql 的定式思维方法有时妨碍了我;但是,开发客户程序并不是很难的。
  
  我说过“不是很好地文档化”吗?那是一个保守说法。否则postgresql完整的html 文档在这方面非常缺乏。我从书本得到的esql知识是初级的,而且联机文档没帮助太多,因此我不得不自己了解如何由ecpg将c的变量强制转换为numeric值--还有其他东西,而且,esql预处理器不是很详细,且无论何时它碰到任何小错误,总是似乎完全释放出来,这对任何从事又长期准备的项目的人来说将是一个持久战。
  
  在编程postgresql的客户程序时,我碰到了一些小错误。例如,如果文档记录是可能的话,在声明一个光标(cursor)时,ecpg将不接受一个 for read only子句 。order by子句甚至没被实现。我遇见的问题大都ecpg预处理器有关。postgres有一个 c api(不管怎么说,esql需要被编译进一些东西),它可能是优秀的,但是我没使用它(这就是生活)。当有esql时,我准备使用esql。
  
  这是摘自postgres-client.pgc的list_books()函数:
  
  void list_books(void)
  {
  exec sql begin declare section;
  int article_no;
  char author_first_names[30];
  char author_last_names[30];
  char title[30];
  char isbn[14];
  int wholesale_price;
  int retail_price;
  int copies_available;
  exec sql end declare section;
  exec sql declare book_cursor cursor for
  select article_no, author_first_names, author_last_names,
  title, isbn, wholesale_price, retail_price,
  copies_available from book; 
 exec sql open book_cursor;
  while (1)
  {
  exec sql fetch next from book_cursor
  into :article_no, :author_first_names, :author_last_names,
  :title, :isbn, :wholesale_price, :retail_price,
  :copies_available;
  if (sqlca.sqlcode == 100) /* 100 == not found */
  break; /* bail out */
  printf("/narticle no. %d/n", article_no);
  printf("%s, %s:/n", author_last_names, author_first_names);
  printf(" %s (%s)/n", title, isbn);
  printf("bought at %d; selling at %d; %d copies available/n/n",
  wholesale_price, retail_price, copies_available);
  };
  exec sql close book_cursor;
  }
  代码是相当直观。它声明一些宿主变量,在一个begin/end declare section构造中包装声明,打开一个select光标查询,并且然后一行一行地取到宿主变量中,光标然后关闭。
  
  我使用了更旧的, 遭到一致反对的sqlcode变量而不是更现代的sqlstate,因为这种方式更容易检查一个not found情形。
  
  把客户带入mysql的生活
  mysql的c api是相当易用的。核心元素是包含有关数据库连接的信息和其状态的结构,它通过连接mysql服务器进行初始化。该结构的一根指针必须被传递给所有的 mysql 客户函数。
  
  查询以字符串提交;这意味着一个人必须处理 c 字符串变换功能,包含空字节(/0) 的数据应该能使用,情况变得更复杂了,因为随后传递了一个计数字符串而不是一个 c字符串。
  
  为了获取查询结果,一个指向mysql_res结构的指针和一个数值变量用适当的 api 函数初始化,然后将一行取进一个mysql_row变量,它是一个字符串数组,直接将结果放进整数变量,就像postgresql的esql的实现能做的那样,但这是不可能的,结果缓冲区随后被释放。只要你能理解,语义几乎与在esql使用光标相同。 
  list_books(void)
  {
  int count;
  mysql_res *result;
  mysql_query(&bookstore, "select article_no, author_first_names,author_last_names, title, isbn, wholesale_price, retail_price,copies_available from book");
  result = mysql_store_result(&bookstore);
  for(count = mysql_num_rows(result); count > 0; count--)
  {
  mysql_row record;
  record = mysql_fetch_row(result);
  printf("/narticle no. %s/n", record[0]);
  printf("%s, %s:/n", record[2], record[1]);
  printf(" %s (%s)/n", record[3], record[4]);
  printf("bought at %s; selling at %s; %s copies available/n/n",
  record[5], record[6], record[7]);
  };
  mysql_free_result(result);
  }
  mysql_free_result ( 结果 );
  }
  
  api函数简明扼要,但足够了, texinfo格式的文档作为mysql文档的主要来源。
  
  把客户带入msql的
  msql和mysql c api 之间的差别非常非常小。这样, 甚至可能有一个自动变换器。主要的差别是:
  
  msql 不存储连接数据块, 仅存一个数字(int bookstore)
  一些 msql 函数不拿连接作为一个参数
  msql 函数名字是pascal风格(他们使用大写首字符而不是下划线)
  方便的money数据类型是一个有2个的十进制位的固定精度小数类型。为了使msql正确地在money列中将分币(cent)存入整数数字里,我需要转换他们,强制到float,分离他们并且在add_new_book()函数中的sprintf语句格式化他们。 
 这是list_books(), 移植到 msql :
  
   
  
  void
  list_books(void)
  {
  int count;
  m_result *result;
  msqlquery(bookstore, "select article_no, author_first_names,author_last_names, title, isbn, wholesale_price, retail_price,copies_available from book");
  result = msqlstoreresult();
  for(count = msqlnumrows(result); count > 0; count--)
  {
  m_row record;
  record = msqlfetchrow(result);
  printf("/narticle no. %s/n", record[0]);
  printf("%s, %s:/n", record[2], record[1]);
  printf(" %s (%s)/n", record[3], record[4]);
  printf("bought at %s; selling at %s; %s copies available/n/n",
  record[5], record[6], record[7]);
  };
  msqlfreeresult(result);
  }
   
  
  msql的 c api文档可以在msql 手册里找到,它以postscript和一个大的html文件与msql一起发行。
  
  一些早期结论
  所有这3个讨论的数据库系统是相当容易安装、设置和编程。实现c api的客户库是很小的;与现今的比如gui工具箱,他们的大小是可以忽略的,并且在客户程序的二进制大小或存储器足迹(footprint)没有太大的差别。
  
  postgresql的esql api的不断增加的冗长和更长的准备时间通过少花些精力在转换字符串到非字符串后反过来进行弥补。
  
  到目前为止, 我没有说过任何关于性能的事情。我将在这个系列的下一部分做深入研究。 


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表