我正在读取engine = create_engine('postgresql://postgres:Opex123@localhost:5432/Annual_Business_Plan_Baseline_8_155')
schema = 'public'
####
from sqlalchemy import event
@event.listens_for(engine, 'before_cursor_execute')
def receive_before_cursor_execute(conn, cursor, statement, params, context, executemany):
if executemany:
cursor.fast_executemany = True
cursor.commit()
####
中的套接字数据,并希望将其发送到psycopg2.extensions.cursor' object has no attribute 'fast_executemany'
进行处理。
如何从client.php
向index.php
发送套接字数据?
服务器正在连续发送数据。
我尝试通过AJAX实现。
index.php