Exemplo n.º 1
0
 /// <summary>
 /// Returns true if the way tags table exists.
 /// </summary>
 /// <param name="connection"></param>
 public static bool DetectWayTagsTable(OracleConnection connection)
 {
     return(OracleSchemaTools.DetectTable(connection, "way_tags"));
 }
Exemplo n.º 2
0
 /// <summary>
 /// Returns true if the relation tags table exists.
 /// </summary>
 /// <param name="connection"></param>
 /// <returns></returns>
 public static bool DetectRelationTagsTable(OracleConnection connection)
 {
     return(OracleSchemaTools.DetectTable(connection, "relation_tags"));
 }
Exemplo n.º 3
0
 /// <summary>
 /// Returns true if the node tags table exists.
 /// </summary>
 /// <param name="connection"></param>
 /// <returns></returns>
 public static bool DetectNodeTagsTable(OracleConnection connection)
 {
     return(OracleSchemaTools.DetectTable(connection, "node_tags"));
 }