mirror of
https://github.com/MariaDB/server.git
synced 2025-01-17 04:22:27 +01:00
7e8504b523
modified: storage/connect/plgdbutl.cpp - Update type translation to take care of type_modifiers modified: storage/connect/ha_connect.cc storage/connect/myutil.cpp storage/connect/myutil.h storage/connect/odbconn.cpp
14 lines
577 B
C
14 lines
577 B
C
/***********************************************************************/
|
|
/* Prototypes of Functions used externally. */
|
|
/***********************************************************************/
|
|
#ifndef __MYUTIL__H
|
|
#define __MYUTIL__H
|
|
|
|
enum enum_field_types PLGtoMYSQL(int type, bool dbf, char var = 0);
|
|
const char *PLGtoMYSQLtype(int type, bool dbf, char var = 0);
|
|
int MYSQLtoPLG(char *typname, char *var = NULL);
|
|
int MYSQLtoPLG(int mytype, char *var = NULL);
|
|
char *MyDateFmt(int mytype);
|
|
char *MyDateFmt(char *typname);
|
|
|
|
#endif // __MYUTIL__H
|