Greenplum Database 4.3 dynamically generates tables using the MyBatis framework

Source: Internet
Author: User

1. Use mabatis3 annotation form, do not use XML to configure SQL mode. Because data warehouses are mostly used for calculations, there are no complex query conditions

Mapper class annotations CREATE TABLE code:

Package Com.aicai.cepchassis.fastsampling.dao;import Org.apache.ibatis.annotations.param;import Org.apache.ibatis.annotations.update;public interface Httplogtabledao {@Update ("CREATE Table ${tablename} (  " + " ID serialnot NULL,  "+" \ "machineid\"  varchar (n), "+" \ "requestpath\"  varchar (n), "+" Referer  varchar (n),  "+" IP  varchar (n), "+" \ "useragent\" varchar (n),  "+" Vuid varchar (n), "+" \ "timelocal \ "Timestamp without time zone,  " + "message varchar" + "  with (Appendonly=true,  orientation=row)" + "Distributed by (ID)") void CreateTable (@Param ("TableName") String tableName);
The table name uses the underscore form to divide the word, does not use the Hump form.

The field name is in camel form. Therefore, the field needs to be added "" double quotation marks.

Table Name parameter annotations

@Param ("TableName")
, SQL uses
${tablename} string substitution form obtained.

Greenplum Database 4.3 dynamically generates tables using the MyBatis framework

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.