Beispiel #1
0
 /// <summary>
 /// Returns true if the way nodes table exists.
 /// </summary>
 /// <param name="connection"></param>
 public static bool DetectWayNodesTable(NpgsqlConnection connection)
 {
     return(PostgreSQLSchemaTools.DetectTable(connection, "way_nodes"));
 }
Beispiel #2
0
 /// <summary>
 /// Returns true if the relation tags table exists.
 /// </summary>
 /// <param name="connection"></param>
 /// <returns></returns>
 public static bool DetectRelationTagsTable(NpgsqlConnection connection)
 {
     return(PostgreSQLSchemaTools.DetectTable(connection, "relation_tags"));
 }
Beispiel #3
0
 /// <summary>
 /// Returns true if the node tags table exists.
 /// </summary>
 /// <param name="connection"></param>
 /// <returns></returns>
 public static bool DetectNodeTagsTable(NpgsqlConnection connection)
 {
     return(PostgreSQLSchemaTools.DetectTable(connection, "node_tags"));
 }