1 /*!
2   \file lib/db/dbmi_client/column.c
3 
4   \brief DBMI Library (client) - column info
5 
6   (C) 1999-2008, 2011 by the GRASS Development Team
7 
8   This program is free software under the GNU General Public
9   License (>=v2). Read the file COPYING that comes with GRASS
10   for details.
11 
12   \author Joel Jones (CERL/UIUC), Radim Blazek
13   \author Update by Glynn Clement <glynn gclements.plus.com>
14   \author Martin Landa <landa.martin gmail.com>
15 */
16 
17 #include <stdlib.h>
18 #include <string.h>
19 #include <grass/gis.h>
20 #include <grass/dbmi.h>
21 #include <grass/glocale.h>
22 
23 /*!
24   \brief Get column sqltype
25 
26   See db_sqltype_name().
27 
28   Supported types:
29    - DB_SQL_TYPE_UNKNOWN
30    - DB_SQL_TYPE_CHARACTER
31    - DB_SQL_TYPE_SMALLINT
32    - DB_SQL_TYPE_INTEGER
33    - DB_SQL_TYPE_REAL
34    - DB_SQL_TYPE_DOUBLE_PRECISION
35    - DB_SQL_TYPE_DECIMAL
36    - DB_SQL_TYPE_NUMERIC
37    - DB_SQL_TYPE_DATE
38    - DB_SQL_TYPE_TIME
39    - DB_SQL_TYPE_TIMESTAMP
40    - DB_SQL_TYPE_INTERVAL
41    - DB_SQL_TYPE_TEXT
42    - DB_SQL_TYPE_SERIAL
43 
44   \param driver DB driver
45   \param tab table name
46   \param col column name
47 
48   \return column sqltype
49   \return -1 on error
50 */
db_column_sqltype(dbDriver * driver,const char * tab,const char * col)51 int db_column_sqltype(dbDriver * driver, const char *tab, const char *col)
52 {
53     dbTable *table;
54     dbString table_name;
55     dbColumn *column;
56     int ncol, cl, type;
57 
58     type = -1;
59 
60     db_init_string(&table_name);
61     db_set_string(&table_name, tab);
62 
63     if (db_describe_table(driver, &table_name, &table) != DB_OK)
64 	return -1;
65 
66     db_free_string(&table_name);
67     ncol = db_get_table_number_of_columns(table);
68     for (cl = 0; cl < ncol; cl++) {
69 	column = db_get_table_column(table, cl);
70 	if (strcmp(db_get_column_name(column), col) == 0) {
71 	    type = db_get_column_sqltype(column);
72 	    break;
73 	}
74     }
75 
76     db_free_table(table);
77 
78     return type;
79 }
80 
81 /*!
82   \brief Get column ctype
83 
84   See db_sqltype_to_Ctype().
85 
86   Supported types:
87    - DB_C_TYPE_STRING
88    - DB_C_TYPE_INT
89    - DB_C_TYPE_DOUBLE
90    - DB_C_TYPE_DATETIME
91 
92   \param driver DB driver
93   \param tab table name
94   \param col column name
95 
96   \return column Ctype
97   \return -1 on error
98  */
db_column_Ctype(dbDriver * driver,const char * tab,const char * col)99 int db_column_Ctype(dbDriver * driver, const char *tab, const char *col)
100 {
101     int type;
102 
103     if ((type = db_column_sqltype(driver, tab, col)) >= 0) {
104 	type = db_sqltype_to_Ctype(type);
105 	return type;
106     }
107 
108     return -1;
109 }
110 
111 /*!
112   \brief Get column structure by table and column name.
113 
114   Column is set to new dbColumn structure or NULL if column was not found
115 
116   \param Driver DB driver
117   \param tname table name
118   \param cname column name
119   \param[out] Column column structure to store within
120 
121   \return DB_OK on success
122   \return DB_FAILED on failure
123 */
db_get_column(dbDriver * Driver,const char * tname,const char * cname,dbColumn ** Column)124 int db_get_column(dbDriver * Driver, const char *tname, const char *cname,
125 		  dbColumn ** Column)
126 {
127     int i, ncols, ret;
128     dbTable *Table;
129     dbColumn *Col;
130     dbString tabname;
131 
132     db_init_string(&tabname);
133     db_set_string(&tabname, tname);
134 
135     if (db_describe_table(Driver, &tabname, &Table) != DB_OK) {
136       G_warning(_("Unable to describe table <%s>"), tname);
137 	return DB_FAILED;
138     }
139 
140     *Column = NULL;
141     ret = DB_FAILED;
142 
143     ncols = db_get_table_number_of_columns(Table);
144     G_debug(3, "ncol = %d", ncols);
145 
146     for (i = 0; i < ncols; i++) {
147 	Col = db_get_table_column(Table, i);
148 	if (G_strcasecmp(db_get_column_name(Col), cname) == 0) {
149 	    *Column = db_copy_column(NULL, Col);
150 	    ret = DB_OK;
151 	    break;
152 	}
153     }
154     db_free_table(Table);
155 
156     return ret;
157 }
158