npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

mybatis3

v0.2.2

Published

mybatis3 mapper

Downloads

31

Readme

mybatis3 mapper

mybatis3 mapper

Travis

Support

  • select, upate, delete, insert
  • include
  • if
  • choose, when, otherwise
  • trim, where, set
  • foreach
  • bind

Usage

var mybatis3 = require('mybatis3')
mybatis3.table('tableName', 'path/to/xmls', [xmls])

const Board = mybatis3.table('tableName')
Board.getList().then()

example

insert

// Read files in custom folders
 .
 ├── xmls
 │     └── basic.xml
 └── app.js
// basic.xml
<?xml version="1.0"?>
<query>
	<insert id="insert">
		INSERT INTO TBL_BOARD(BRDTITLE, BRDMEMO, BRDWRITER, BRDDATE)
		VALUES (:brdtitle, :brdmemo, :brdwriter, NOW())
	</insert>
</query>
var mybatis3 = require('mybatis3')
mybatis3.table('Board', 'path/to/xmls', ['basic'])

var Board = mybatis3.table('Board')
var params = {
  brdtitle: 'test board',
  brdmemo: 'test',
  brdwriter: 'james kim'
}

// 1. get query
Board.insert(params).then(sql => console.log(sql))
// INSERT INTO TBL_BOARD(BRDTITLE, BRDMEMO, BRDWRITER, BRDDATE) VALUES ('test board', 'test', 'james kim', NOW())

// 2. execute-1, auto release
var conn = // mysql connection, has `query, release` method
Board.insert(params, conn).then(data => console.log(data)) // executed result
Board.lastQuery // can access last query by `lastQuery` getter


// 3. execute-2
var pool = // mysql connection pool, has `query` method
mybatis3.setConnection(pool)
Board.insert(params).then(data => console.log(data)) // executed result
Board.lastQuery // can access last query by `lastQuery` getter

// 4. transaction
var pool = // mysql connection pool, has `getConnection` method
mybatis3.setConnection(pool)
mybatis3.transaction(async conn => {
	const Board = conn.table('Board')
	const data = await Board.getList()
	Board.lastQuery // can access last query by `lastQuery` getter
	return data
}).then(data => console.log(data))

more example

see test https://github.com/pruge/mybatis3/tree/master/test

basic

<?xml version="1.0"?>
<query>
	<sql id="includeWhere">
		WHERE id=:brdno
	</sql>
	<sql id="includeWhere2">
		WHERE id=:brdno
	</sql>
	<select id="getList">
		SELECT * FROM TBL_BOARD
	</select>
	<insert id="insert">
		INSERT INTO TBL_BOARD(BRDTITLE, BRDMEMO, BRDWRITER, BRDDATE)
		VALUES (:brdtitle, :brdmemo, :brdwriter, NOW())
	</insert>
	<update id="update">
		UPDATE TBL_BOARD
		SET BRDTITLE=:brdtitle, BRDMEMO=:brdmemo, BRDWRITER=:brdwriter
	</update>
	<delete id="delete">
		DELETE FROM TBL_BOARD
		<include refid="includeWhere" />
	</delete>
</query>

if

<?xml version="1.0"?>
<query>
	<insert id="insert">
		INSERT INTO TBL_BOARD(BRDTITLE, BRDMEMO, BRDWRITER, BRDDATE)
		VALUES (:brdtitle, :brdmemo, :brdwriter, NOW())
		<if test=":cnt === 0 || :cnt === undefined">
			ORDER BY created DESC
		</if>
		<if test=":cnt === 1">
			ORDER BY created DESC
		</if>
		<if test=":cnt === 2">
			ORDER BY created DESC
		</if>
		TEST
	</insert>
</query>

choose, when, otherwise

<?xml version="1.0"?>
<query>
	<select id="getList">
		SELECT * FROM BLOG WHERE state = ‘ACTIVE’
		<choose>
			<when test=":title != null">
				AND title like :title
			</when>
			<when test=":author != null and :author.name != null">
				AND author_name like :author.name
			</when>
			<otherwise>
				AND featured = 1
			</otherwise>
		</choose>
	</select>
</query>

foreach

<?xml version="1.0"?>
<query>
	<select id="selectPostIn">
		SELECT *
		FROM POST P
		WHERE ID in
		<foreach item="item" index="index" collection="list" open="(" separator="," close=")">
			:item
		</foreach>
	</select>
</query>

trim, where, set

<?xml version="1.0"?>
<query>
	<select id="getList">
		SELECT * FROM BLOG
		<where>
			<if test=":state != null">
				state = :state
			</if>
			<if test=":title != null">
				AND title like :title
			</if>
			<if test=":author != null and :author.name != null">
				AND author_name like :author.name
			</if>
		</where>
	</select>
	<select id="getList2">
		SELECT * FROM BLOG
		<trim prefix="WHERE" prefixOverrides="AND |OR ">
			<if test=":state != null">
				state = :state
			</if>
			<if test=":title != null">
				AND title like :title
			</if>
			<if test=":author != null and :author.name != null">
				AND author_name like :author.name
			</if>
		</trim>
	</select>
	<update id="updateAuthorIfNecessary">
		update Author
		<set>
			<if test=":username != null">
				username=:username,
			</if>
			<if test=":password != null">
				password=:password,
			</if>
			<if test=":email != null">
				email=:email,
			</if>
			<if test=":bio != null">
				bio=:bio
			</if>
		</set>
		where id=:id
	</update>
</query>

bind

<?xml version="1.0"?>
<query>
	<select id="selectBlogsLike">
		<bind name="pattern" value="'%' + :blog.getTitle() + '%'" />
		SELECT * FROM BLOG
		WHERE title LIKE :pattern
	</select>
</query>