JDBC-Redis是用于Redis这个NoSQL数据库的JDBC驱动,也就是说你可以使用你所熟悉的JDBC的方法来访问Redis数据。
示例代码:
importjava.sql.Connection;importjava.sql.DriverManager;importjava.sql.ResultSet;importjava.sql.SQLException;importjava.sql.Statement;publicclassRedisSample{ publicstaticvoidmain(String[]args)throwsSQLException,ClassNotFoundException{ Class.forName("br.com.svvs.jdbc.redis.RedisDriver"); Connectionconn=DriverManager.getConnection("jdbc:redis://localhost"); Statementstatement=conn.createStatement(); statement.execute("setmy_first_keymyfirstvalue"); statement.execute("getmy_first_key"); ResultSetr=statement.getResultSet(); while(r.next()){ System.out.println(">"+r.getString(0)+ "<"); } }}
评论