This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SELECT TO_CHAR(to_date('28-06-2011', 'DD-MM-YYYY'), 'Month', 'nls_date_language=japanese') AS b FROM dual; | |
-- 6月 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.halo.struts.action; | |
import java.io.FileInputStream; | |
import java.io.IOException; | |
import javax.print.Doc; | |
import javax.print.DocFlavor; | |
import javax.print.DocPrintJob; | |
import javax.print.PrintException; | |
import javax.print.PrintService; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
jTicketing is a management tool for online ticketing and box office, which provides a highly configurable enterprise class solution. | |
Copyright (C) 2010-2011 OpenPRJ srl | |
All rights reserved | |
This program is free software: you can redistribute it and/or modify | |
it under the terms of the GNU Affero General Public License as | |
published by the Free Software Foundation, either version 3 of the | |
License, or (at your option) any later version. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<mule xmlns="http://www.mulesoft.org/schema/mule/core" | |
xmlns:http="http://www.mulesoft.org/schema/mule/http" | |
xmlns:doc="http://www.mulesoft.org/schema/mule/documentation" | |
xmlns:spring="http://www.springframework.org/schema/beans" | |
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
xmlns:cxf="http://www.mulesoft.org/schema/mule/cxf" | |
xmlns:mule-xml="http://www.mulesoft.org/schema/mule/xml" | |
xsi:schemaLocation=" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
mongod --jsonp --port 8600 --directoryperdb --rest --dbpath C:/opt/mongodb/data |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<mule xmlns="http://www.mulesoft.org/schema/mule/core" xmlns:pop3s="http://www.mulesoft.org/schema/mule/pop3s" | |
xmlns:doc="http://www.mulesoft.org/schema/mule/documentation" | |
xmlns:spring="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
xsi:schemaLocation=" | |
http://www.mulesoft.org/schema/mule/pop3s http://www.mulesoft.org/schema/mule/pop3s/3.1/mule-pop3s.xsd | |
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd | |
http://www.mulesoft.org/schema/mule/core http://www.mulesoft.org/schema/mule/core/3.1/mule.xsd "> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SELECT uc.constraint_name||CHR(10) | |
|| '('||ucc1.TABLE_NAME||'.'||ucc1.column_name||')' constraint_source | |
, 'REFERENCES'||CHR(10) | |
|| '('||ucc2.TABLE_NAME||'.'||ucc2.column_name||')' references_column | |
FROM user_constraints uc | |
, user_cons_columns ucc1 | |
, user_cons_columns ucc2 | |
WHERE uc.constraint_name = ucc1.constraint_name | |
AND uc.r_constraint_name = ucc2.constraint_name | |
AND ucc1.POSITION = ucc2.POSITION -- Correction for multiple column primary keys. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package org.mule.example.echo; | |
import java.util.ArrayList; | |
import java.util.Hashtable; | |
import java.util.List; | |
import javax.naming.Context; | |
import javax.naming.NamingEnumeration; | |
import javax.naming.directory.Attribute; | |
import javax.naming.directory.Attributes; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- | |
The constraint Property: | |
When evaluating to XPath false, the associated model item is not valid; | |
the converse is not necessarily true. This model item property does not prevent | |
form controls and XForms actions from setting invalid values into data nodes. | |
Example: | |
Here, a constraint property associated with element my:to indicates | |
that its value must be greater than that of element my:from. | |
--> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
for /d /r . %d in (.svn) do @if exist "%d" rd /s/q "%d" |