Field VARCHAR
Field type: int
Member of: java.sql.Types
[api documentation ] [ main menu]

Examples of how the element is used (one line per example):
[add your own example]

1 public static final SQLType VARCHAR = new SQLType("VARCHAR", Types.VARCHAR, 0);
2 this(name, Types.VARCHAR, true, (name != null ? name.length() : 0));
3 statement.setNull(index, Types.VARCHAR);
4 ps.setNull(position, Types.VARCHAR);
5 dbInfo.setKey(new Column("testing",Types.VARCHAR,testTable));
6 call.registerOutParameter (1, Types.VARCHAR);
7 _ps.setNull(_ind, Types.VARCHAR);
8 case Types.VARCHAR :
9 mAtrisBoundColumns.add(AtrisBoundColumn.createColumnFieldBind(lPanel,lTree,lFieldName,Types.VARCHAR));
10 case Types.VARCHAR :
11 query.declareParameter(new SqlParameter("NONEXISTENT", Types.VARCHAR));
12 cstmt.registerOutParameter(3, Types.VARCHAR);
13 setType("VARCHAR", Types.VARCHAR);
14 ,{"VARCHAR", new Integer(java.sql.Types.VARCHAR) }
15 case java.sql.Types.VARCHAR: typestr = "VARCHAR"; break; // NOI18N
16 statement.setNull(i+1, Types.VARCHAR);
17 case java.sql.Types.VARCHAR:
18 case Types.VARCHAR:
19 case Types.VARCHAR:
20 ps.setNull(1, Types.VARCHAR);
Java and J2SE are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other Countries.