Click here to Skip to main content
15,879,474 members
Please Sign up or sign in to vote.
3.00/5 (2 votes)
See more:
I want to know the significance of the separator. Oracle JDBC
XML
<jdbc name="Oracle">
      <description>Oracle Database</description>
      <driver>oracle.jdbc.OracleDriver</driver>
      <url>jdbc:oracle:thin:@127.0.0.1:1521:dbname</url>
      <urlProperties>
        <urlProperty>
          <name>restrictGetTables</name>
          <value>true</value>
        </urlProperty>
      </urlProperties>
      <schema>schemaName</schema>
      <username>scott</username>
      <password>tiger</password>
      <separator>&#xA7;</separator>
    </jdbc>

Thank you,
Posted
Comments
Sergey Alexandrovich Kryukov 13-Oct-11 1:13am    
What does this question mean, exactly?
--SA
Soft009 13-Oct-11 1:21am    
I want to know the significant of this part "separator" it is in the end of the code
Firo Atrum Ventus 13-Oct-11 1:32am    
What about asking the person who wrote it?
Soft009 13-Oct-11 1:35am    
can i use this code without that "separator" part
Sergey Alexandrovich Kryukov 13-Oct-11 1:41am    
This is the symbol '§' (section sign, "paragraph"), that's all. How anyone can know some weird thing written by who-knows-who?

There is no question here; time to close this discussion. Nobody will tell you anything which can solve your problem.
--SA

1 solution

It defines which character to use as command separator.
On some systems the normally used character might be reserved for another purpose and therefore you're allowed to define it yourself.
 
Share this answer
 
Comments
Soft009 17-Oct-11 2:59am    
Thanx a lot.....

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900