<?xml version="1.0" encoding="utf-8" ?><rss version="2.0"><channel><title><![CDATA[chris in java]]></title><description><![CDATA[process of growing to a architect]]></description><link>https://blog.csdn.net/chris830</link><language>zh-cn</language><generator>https://blog.csdn.net/</generator><copyright><![CDATA[Copyright &copy; chris830]]></copyright><item><title><![CDATA[Trade Mark]]></title><link>https://blog.csdn.net/chris830/article/details/3886472</link><guid>https://blog.csdn.net/chris830/article/details/3886472</guid><author>chris830</author><pubDate>Fri, 13 Feb 2009 11:52:00 +0800</pubDate><description><![CDATA[trademarkGetting the TM symbol can be problematic. Here are seven techniques to try:Use ® = &reg; theregistered trademark instead.In early HTML browsers use TM = TMIf you know your older b]]></description><category></category></item><item><title><![CDATA[MySQL errno: 150 Foreign Key Constraint]]></title><link>https://blog.csdn.net/chris830/article/details/3741839</link><guid>https://blog.csdn.net/chris830/article/details/3741839</guid><author>chris830</author><pubDate>Fri, 09 Jan 2009 17:01:00 +0800</pubDate><description><![CDATA[From MySQL Manual we can see it happens a foreign key constraint            was not correctly formed.(http://dev.mysql.com/doc/refman/5.0/en/innodb-error-codes.html)It reports something like   ERRO]]></description><category></category></item><item><title><![CDATA[Hibernate Data Types VS JAVA Data Types VS SQL Data Types]]></title><link>https://blog.csdn.net/chris830/article/details/3547428</link><guid>https://blog.csdn.net/chris830/article/details/3547428</guid><author>chris830</author><pubDate>Thu, 18 Dec 2008 10:45:00 +0800</pubDate><description><![CDATA[by Eric Pugh and Joseph D. GradeckiJava Class Attribute Type         Hibernate Type               Possible SQL Type-Vendor SpecificInteger, int, long short          integer, long, short         Ap]]></description><category></category></item><item><title><![CDATA[tnsnames.ora 配置]]></title><link>https://blog.csdn.net/chris830/article/details/3159277</link><guid>https://blog.csdn.net/chris830/article/details/3159277</guid><author>chris830</author><pubDate>Mon, 27 Oct 2008 16:16:00 +0800</pubDate><description><![CDATA[在Win环境下的Oracle中,Oracle/Network/ADMIN/tnsnames.ora 文件很重要,它作用是： 本地命名的配置。本地名可以用简单的名称就可以访问到所需的数据库或服务器所需的信息。而这些信息正是保存到了tnsnames.ora中。         配置好tnsnames.ora后，最终用户输入包括NET服务的连接字符串 　                CONNECT]]></description><category></category></item><item><title><![CDATA[mysqldump的远程数据备份]]></title><link>https://blog.csdn.net/chris830/article/details/2794881</link><guid>https://blog.csdn.net/chris830/article/details/2794881</guid><author>chris830</author><pubDate>Tue, 19 Aug 2008 12:42:00 +0800</pubDate><description><![CDATA[ mysqldump usage:Shell>mysqldump -hsrc -usrc_usr -psrc_pwd src_db src_tbl | mysql -hdest -udest_root -pdest_pwd -C dest_db源主机IP地址：src源MYSQL服务器登陆名：src_usr (一般为Linux系统登陆名)源MYSQL服务器登陆密码：src_pwd源MYSQL]]></description><category></category></item><item><title><![CDATA[App server, Web server: What's the difference?]]></title><link>https://blog.csdn.net/chris830/article/details/2739488</link><guid>https://blog.csdn.net/chris830/article/details/2739488</guid><author>chris830</author><pubDate>Wed, 30 Jul 2008 14:00:00 +0800</pubDate><description><![CDATA[Q:What is the difference between an application server and a Web server?                     A:Taking a big step back, a Web server serves pages for viewing in a Web browser, while an application se]]></description><category></category></item><item><title><![CDATA[The requested operstion has failed. Apache无法启动解决方案]]></title><link>https://blog.csdn.net/chris830/article/details/2704260</link><guid>https://blog.csdn.net/chris830/article/details/2704260</guid><author>chris830</author><pubDate>Thu, 24 Jul 2008 13:27:00 +0800</pubDate><description><![CDATA[各位亲爱的兄弟姐妹，一定要以血为鉴，一个apache让我改conf，卸载，重装，再卸再装，连查资料带请教人的，最后症结就在开始怀疑的oracle上。假如开始就去把oracle的service都关掉，也不至于折腾这么久了。不过经过这么一折腾倒是又知道不少东西，所谓遇到问题才能学到新东西。言归正传，有很多人都遇到这个问题，启动apache时提示“The requested operstion has ]]></description><category></category></item><item><title><![CDATA[Get number from string with regular expression in java]]></title><link>https://blog.csdn.net/chris830/article/details/2665559</link><guid>https://blog.csdn.net/chris830/article/details/2665559</guid><author>chris830</author><pubDate>Thu, 17 Jul 2008 13:16:00 +0800</pubDate><description><![CDATA[in java, we use Pattern to compile a regular expression and do the match with Matcher.Example1:import java.util.regex.Matcher;import java.util.regex.Pattern;public class Test {    public static void m]]></description><category></category></item><item><title><![CDATA[How to read file line by line?]]></title><link>https://blog.csdn.net/chris830/article/details/2661811</link><guid>https://blog.csdn.net/chris830/article/details/2661811</guid><author>chris830</author><pubDate>Wed, 16 Jul 2008 16:58:00 +0800</pubDate><description><![CDATA[since readLine() of DataInputStream is depreacted, now we can use BufferReader to do this job.public static void main(String args[]){        try {            File file = new File("d://myfile.txt");   ]]></description><category></category></item><item><title><![CDATA[java.lang.ClassNotFoundException: com.mysql.jdbc.Driver]]></title><link>https://blog.csdn.net/chris830/article/details/2660952</link><guid>https://blog.csdn.net/chris830/article/details/2660952</guid><author>chris830</author><pubDate>Wed, 16 Jul 2008 15:20:00 +0800</pubDate><description><![CDATA[ I made this stupid mistake today, never forget to inlude the mysql connector jar file when you manipulate mysql by jdbc.]]></description><category></category></item><item><title><![CDATA[Import Data from Txt or CSV files into MYSQL database tables]]></title><link>https://blog.csdn.net/chris830/article/details/2660899</link><guid>https://blog.csdn.net/chris830/article/details/2660899</guid><author>chris830</author><pubDate>Wed, 16 Jul 2008 15:09:00 +0800</pubDate><description><![CDATA[  Mysql-connector-java-3.1.10 is a JDBC connector for MYSQL database. MYSQL provides LOAD DATA INFILE utility to import data from files like csv, txt or xls into database tables.The example below ]]></description><category></category></item><item><title><![CDATA[Get to Know Code Igniter -- 1]]></title><link>https://blog.csdn.net/chris830/article/details/2655245</link><guid>https://blog.csdn.net/chris830/article/details/2655245</guid><author>chris830</author><pubDate>Tue, 15 Jul 2008 18:20:00 +0800</pubDate><description><![CDATA[first of all, sorry for disapear almost 2 years even if there is nobodywaiting here but at least it must be a waste of  the space resource.recently im involved in PHP development, now lets start t]]></description><category></category></item><item><title><![CDATA[关于"CREATE TABLE AS SELECT"不支持"ORDER BY"]]></title><link>https://blog.csdn.net/chris830/article/details/1422100</link><guid>https://blog.csdn.net/chris830/article/details/1422100</guid><author>chris830</author><pubDate>Thu, 30 Nov 2006 13:10:00 +0800</pubDate><description><![CDATA[CREATE VIEW EMPGROUP AS SELECT NAME，EMPID，HIREDATE，ROWNUM FROM EMP GROUP BY NAME， EMPID， HIREDATE，ROWNUM； 然后用这个VIEW来增加一个TABLE: CREATE TABLE SORTED_EMP AS SELECT NAME， EMPID， HIREDATE FROM EMPGROUP； 注意]]></description><category></category></item><item><title><![CDATA[MySQL的基本操作]]></title><link>https://blog.csdn.net/chris830/article/details/1417237</link><guid>https://blog.csdn.net/chris830/article/details/1417237</guid><author>chris830</author><pubDate>Mon, 27 Nov 2006 18:22:00 +0800</pubDate><description><![CDATA[常用：　　建立数据库　　格式：create database 库名;　　例如：建立新数据库discuz　　在MYSQL的提示符下：mysql> 录入 create database discuz;　　显示数据库　　格式：show databases;　　注意是databases而不是database 　　建立新用户　　格式：grant all privileges on 数据库.* to 用户]]></description><category></category></item><item><title><![CDATA[ORA-00942: table or view does not exist]]></title><link>https://blog.csdn.net/chris830/article/details/1417135</link><guid>https://blog.csdn.net/chris830/article/details/1417135</guid><author>chris830</author><pubDate>Mon, 27 Nov 2006 17:16:00 +0800</pubDate><description><![CDATA[ive solved this problem just now and ill write my way as follows:1st- environment discription:tools: Eclipse3.2,myeclipse5.0,oracle 9i,Tomcat5 tech: Struts2nd- relative codes:            v]]></description><category></category></item><item><title><![CDATA[新建oracle用户]]></title><link>https://blog.csdn.net/chris830/article/details/1416740</link><guid>https://blog.csdn.net/chris830/article/details/1416740</guid><author>chris830</author><pubDate>Mon, 27 Nov 2006 14:19:00 +0800</pubDate><description><![CDATA[启动oracle的控制台，并弹出Add Database to Tree对话框，并填写： Hostname：本机IP SID：ora9i//安装之前配置好的 Port Number：1521 然后在connect database界面上输入： userName：sysman password：oem_temp DROP USER OBS_ZHUJP CASCADE;CREATE USER OB]]></description><category></category></item><item><title><![CDATA[eclipse快捷键]]></title><link>https://blog.csdn.net/chris830/article/details/1416378</link><guid>https://blog.csdn.net/chris830/article/details/1416378</guid><author>chris830</author><pubDate>Mon, 27 Nov 2006 10:29:00 +0800</pubDate><description><![CDATA[                                    Ctrl+1                                    快速修复(最经典的快捷键,就不用多说了)                                                    Ctrl+D                ]]></description><category></category></item><item><title><![CDATA[the beginning of learning struts]]></title><link>https://blog.csdn.net/chris830/article/details/1404752</link><guid>https://blog.csdn.net/chris830/article/details/1404752</guid><author>chris830</author><pubDate>Wed, 22 Nov 2006 15:31:00 +0800</pubDate><description><![CDATA[i changed a new company this week and feels well right now. colleagues of this company are easy to relate , hope i also gave them a good impression.yesterday i studied struts and practised a hellowo]]></description><category></category></item></channel></rss>