May 30, 2008
May 29, 2008
CouchSurfing
Recently a good friend mentioned about it, seems interesting...
CouchSurfing is a worldwide network for making connections between travelers and the local communities they visit.
May 27, 2008
ORA-03115: Unsupported network datatype or representation
While duelling with Java sql and preparedstatement I got this error.
This was due to using the query both in initiating prepared statement and while executing it.
The solution is to omit the query parameter from executeQuery
Connection conn = DriverManager.getConnection ("jdbc:oracle:thin:@localhost:1521:xe", "Birrah", "String sqlQuery = "SELECT x, y, z VIEWgup where dt > ?";
PreparedStatement ptmt = conn.prepareStatement(sqlQuery);
ptmt.setDate(1, new java.sql.Date(sonTarih.getMillis()));
ResultSet rset = ptmt.executeQuery (sqlQuery);
//this executequery statement above should be called woth no parameters.
This was due to using the query both in initiating prepared statement and while executing it.
The solution is to omit the query parameter from executeQuery
Connection conn = DriverManager.getConnection ("jdbc:oracle:thin:@localhost:1521:xe", "Birrah", "String sqlQuery = "SELECT x, y, z VIEWgup where dt > ?";
PreparedStatement ptmt = conn.prepareStatement(sqlQuery);
ptmt.setDate(1, new java.sql.Date(sonTarih.getMillis()));
ResultSet rset = ptmt.executeQuery (sqlQuery);
//this executequery statement above should be called woth no parameters.
May 25, 2008
Torrent search?
Cubit is a system that provides fully decentralized
approximate keyword search capabilities to Azureus as a standard
plugin. Approximate search means that you can use Cubit to find a movie,
song or artist even if you don't know which spelling variation is used in
the title or in her name.
It gives you what you mean instead of what you asked for exactly, and
returns the best results in the network in only a few seconds.
Synergy is a great software for sharing a single a single mouse and keyboard across multiple computers.
http://www.cs.cornell.edu/~bwong/cubit/
approximate keyword search capabilities to Azureus as a standard
plugin. Approximate search means that you can use Cubit to find a movie,
song or artist even if you don't know which spelling variation is used in
the title or in her name.
It gives you what you mean instead of what you asked for exactly, and
returns the best results in the network in only a few seconds.
Synergy is a great software for sharing a single a single mouse and keyboard across multiple computers.
http://www.cs.cornell.edu/~bwong/cubit/
May 17, 2008
Sharing a single mouse and keyboard across multiple computers
Synergy is a great software for sharing a single a single mouse and keyboard across multiple computers.
The configuration is a bit tricky though.
http://synergy2.sourceforge.net/
The configuration is a bit tricky though.
http://synergy2.sourceforge.net/
May 12, 2008
Notepad++ htmltidy configuration
This is a great way to format html, xml if you have have problems with the eclipse autoformatter...
http://notepad-plus.wiki.sourceforge.net/HTML+Tidy
http://notepad-plus.wiki.sourceforge.net/HTML+Tidy
Subscribe to:
Posts (Atom)