github.com/lib/pq.stmt.cn (field)

20 uses

	github.com/lib/pq (current package)
		conn.go#L760: 	st := &stmt{cn: cn, name: stmtName}
		conn.go#L1206: 	cn   *conn
		conn.go#L1218: 	if st.cn.bad {
		conn.go#L1221: 	defer st.cn.errRecover(&err)
		conn.go#L1223: 	w := st.cn.writeBuf('C')
		conn.go#L1226: 	st.cn.send(w)
		conn.go#L1228: 	st.cn.send(st.cn.writeBuf('S'))
		conn.go#L1230: 	t, _ := st.cn.recv1()
		conn.go#L1232: 		st.cn.bad = true
		conn.go#L1237: 	t, r := st.cn.recv1()
		conn.go#L1239: 		st.cn.bad = true
		conn.go#L1242: 	st.cn.processReadyForQuery(r)
		conn.go#L1248: 	if st.cn.bad {
		conn.go#L1251: 	defer st.cn.errRecover(&err)
		conn.go#L1255: 		cn:         st.cn,
		conn.go#L1261: 	if st.cn.bad {
		conn.go#L1264: 	defer st.cn.errRecover(&err)
		conn.go#L1267: 	res, _, err = st.cn.readExecuteResponse("simple query")
		conn.go#L1279: 	cn := st.cn