Laur's blog
Sign in Subscribe

name

A collection of 3 posts
List Columns in a ResultSet
column

List Columns in a ResultSet

In order to list all columns in a JDBC ResultSet (e.g. for debug purposes), you need to iterate through its metadata: // Get the metadata ResultSetMetaData md = rs.getMetaData(); // For each column, list its name for (int i=0;i < md.getColumnCount(); i++) logger.debug("Column :" + i
Dec 8, 2016 1 min read
Change a django password manually
application

Change a django password manually

The other day I've been confronted with a strange situation: I forgot the admin password for a django application. I was playing with installing my own pypi repository, I've configured and deployed a test application and, after a couple of weeks, I forgot the password. I
May 4, 2016 2 min read
Change the Display Name in Google Groups
google

Change the Display Name in Google Groups

By default, the groups you're subscribed to show your user name (e.g. the first part from your email address -- before the @ symbol). To change this to show your full name (if you want it), follow the steps below: 1. Click on the group's name
Apr 6, 2015 1 min read
Page 1 of 1
Laur's blog © 2025
  • Sign up
Powered by Ghost